Class: Aws::EMR::Types::AddJobFlowStepsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::AddJobFlowStepsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emr/types.rb
Overview
Note:
When making an API call, you may pass AddJobFlowStepsInput data as a hash:
{
job_flow_id: "XmlStringMaxLen256", # required
steps: [ # required
{
name: "XmlStringMaxLen256", # required
action_on_failure: "TERMINATE_JOB_FLOW", # accepts TERMINATE_JOB_FLOW, TERMINATE_CLUSTER, CANCEL_AND_WAIT, CONTINUE
hadoop_jar_step: { # required
properties: [
{
key: "XmlString",
value: "XmlString",
},
],
jar: "XmlString", # required
main_class: "XmlString",
args: ["XmlString"],
},
},
],
}
The input argument to the AddJobFlowSteps operation.
Instance Attribute Summary collapse
-
#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
#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.
247 248 249 250 251 |
# File 'lib/aws-sdk-emr/types.rb', line 247 class AddJobFlowStepsInput < Struct.new( :job_flow_id, :steps) include Aws::Structure end |
#steps ⇒ Array<Types::StepConfig>
A list of StepConfig to be executed by the job flow.
247 248 249 250 251 |
# File 'lib/aws-sdk-emr/types.rb', line 247 class AddJobFlowStepsInput < Struct.new( :job_flow_id, :steps) include Aws::Structure end |