pub struct ExecutionEngineConfig {
pub id: String,
pub master_instance_security_group_id: Option<String>,
pub type_: Option<String>,
}
Expand description
Specifies the execution engine (cluster) to run the notebook and perform the notebook execution, for example, an EMR cluster.
Fields§
§id: String
The unique identifier of the execution engine. For an EMR cluster, this is the cluster ID.
master_instance_security_group_id: Option<String>
An optional unique ID of an EC2 security group to associate with the master instance of the EMR cluster for this notebook execution. For more information see Specifying EC2 Security Groups for EMR Notebooks in the EMR Management Guide.
type_: Option<String>
The type of execution engine. A value of EMR
specifies an EMR cluster.
Trait Implementations§
Source§impl Clone for ExecutionEngineConfig
impl Clone for ExecutionEngineConfig
Source§fn clone(&self) -> ExecutionEngineConfig
fn clone(&self) -> ExecutionEngineConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ExecutionEngineConfig
impl Debug for ExecutionEngineConfig
Source§impl Default for ExecutionEngineConfig
impl Default for ExecutionEngineConfig
Source§fn default() -> ExecutionEngineConfig
fn default() -> ExecutionEngineConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExecutionEngineConfig
impl<'de> Deserialize<'de> for ExecutionEngineConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ExecutionEngineConfig
impl PartialEq for ExecutionEngineConfig
Source§impl Serialize for ExecutionEngineConfig
impl Serialize for ExecutionEngineConfig
impl StructuralPartialEq for ExecutionEngineConfig
Auto Trait Implementations§
impl Freeze for ExecutionEngineConfig
impl RefUnwindSafe for ExecutionEngineConfig
impl Send for ExecutionEngineConfig
impl Sync for ExecutionEngineConfig
impl Unpin for ExecutionEngineConfig
impl UnwindSafe for ExecutionEngineConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more