Class: Aws::EMR::Types::ExecutionEngineConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::ExecutionEngineConfig
- Defined in:
- gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb
Overview
When making an API call, you may pass ExecutionEngineConfig data as a hash:
{
id: "XmlStringMaxLen256", # required
type: "EMR", # accepts EMR
master_instance_security_group_id: "XmlStringMaxLen256",
}
Specifies the execution engine (cluster) to run the notebook and perform the notebook execution, for example, an EMR cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The unique identifier of the execution engine.
-
#master_instance_security_group_id ⇒ String
An optional unique ID of an EC2 security group to associate with the master instance of the EMR cluster for this notebook execution.
-
#type ⇒ String
The type of execution engine.
Instance Attribute Details
#id ⇒ String
The unique identifier of the execution engine. For an EMR cluster, this is the cluster ID.
2114 2115 2116 2117 2118 2119 2120 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 2114 class ExecutionEngineConfig < Struct.new( :id, :type, :master_instance_security_group_id) SENSITIVE = [] include Aws::Structure end |
#master_instance_security_group_id ⇒ 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.
2114 2115 2116 2117 2118 2119 2120 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 2114 class ExecutionEngineConfig < Struct.new( :id, :type, :master_instance_security_group_id) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of execution engine. A value of EMR
specifies an EMR
cluster.
2114 2115 2116 2117 2118 2119 2120 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 2114 class ExecutionEngineConfig < Struct.new( :id, :type, :master_instance_security_group_id) SENSITIVE = [] include Aws::Structure end |