Class: Aws::EMR::Types::AddJobFlowStepsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::AddJobFlowStepsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emr/types.rb
Overview
The input argument to the AddJobFlowSteps operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#execution_role_arn ⇒ String
The Amazon Resource Name (ARN) of the runtime role for a step on the cluster.
-
#job_flow_id ⇒ String
A string that uniquely identifies the job flow.
-
#steps ⇒ Array<Types::StepConfig>
A list of StepConfig to be executed by the job flow.
Instance Attribute Details
#execution_role_arn ⇒ String
The Amazon Resource Name (ARN) of the runtime role for a step on the cluster. The runtime role can be a cross-account IAM role. The runtime role ARN is a combination of account ID, role name, and role type using the following format: ‘arn:partition:service:region:account:resource`.
For example, ‘arn:aws:IAM::1234567890:role/ReadOnly` is a correctly formatted runtime role ARN.
119 120 121 122 123 124 125 |
# File 'lib/aws-sdk-emr/types.rb', line 119 class AddJobFlowStepsInput < Struct.new( :job_flow_id, :steps, :execution_role_arn) SENSITIVE = [] include Aws::Structure end |
#job_flow_id ⇒ String
A string that uniquely identifies the job flow. This identifier is returned by RunJobFlow and can also be obtained from ListClusters.
119 120 121 122 123 124 125 |
# File 'lib/aws-sdk-emr/types.rb', line 119 class AddJobFlowStepsInput < Struct.new( :job_flow_id, :steps, :execution_role_arn) SENSITIVE = [] include Aws::Structure end |
#steps ⇒ Array<Types::StepConfig>
A list of StepConfig to be executed by the job flow.
119 120 121 122 123 124 125 |
# File 'lib/aws-sdk-emr/types.rb', line 119 class AddJobFlowStepsInput < Struct.new( :job_flow_id, :steps, :execution_role_arn) SENSITIVE = [] include Aws::Structure end |