Class: Aws::EMR::Types::CancelStepsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::CancelStepsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emr/types.rb
Overview
Note:
When making an API call, you may pass CancelStepsInput data as a hash:
{
cluster_id: "XmlStringMaxLen256",
step_ids: ["XmlStringMaxLen256"],
}
The input argument to the CancelSteps operation.
Instance Attribute Summary collapse
-
#cluster_id ⇒ String
The ‘ClusterID` for which specified steps will be canceled.
-
#step_ids ⇒ Array<String>
The list of ‘StepIDs` to cancel.
Instance Attribute Details
#cluster_id ⇒ String
The ‘ClusterID` for which specified steps will be canceled. Use RunJobFlow and ListClusters to get ClusterIDs.
601 602 603 604 605 |
# File 'lib/aws-sdk-emr/types.rb', line 601 class CancelStepsInput < Struct.new( :cluster_id, :step_ids) include Aws::Structure end |
#step_ids ⇒ Array<String>
The list of ‘StepIDs` to cancel. Use ListSteps to get steps and their states for the specified cluster.
601 602 603 604 605 |
# File 'lib/aws-sdk-emr/types.rb', line 601 class CancelStepsInput < Struct.new( :cluster_id, :step_ids) include Aws::Structure end |