Class: Aws::EMR::Types::CancelStepsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::CancelStepsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emr/types.rb
Overview
The input argument to the CancelSteps operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_id ⇒ String
The ‘ClusterID` for the specified steps that will be canceled.
-
#step_cancellation_option ⇒ String
The option to choose to cancel ‘RUNNING` steps.
-
#step_ids ⇒ Array<String>
The list of ‘StepIDs` to cancel.
Instance Attribute Details
#cluster_id ⇒ String
The ‘ClusterID` for the specified steps that will be canceled. Use RunJobFlow and ListClusters to get ClusterIDs.
479 480 481 482 483 484 485 |
# File 'lib/aws-sdk-emr/types.rb', line 479 class CancelStepsInput < Struct.new( :cluster_id, :step_ids, :step_cancellation_option) SENSITIVE = [] include Aws::Structure end |
#step_cancellation_option ⇒ String
The option to choose to cancel ‘RUNNING` steps. By default, the value is `SEND_INTERRUPT`.
479 480 481 482 483 484 485 |
# File 'lib/aws-sdk-emr/types.rb', line 479 class CancelStepsInput < Struct.new( :cluster_id, :step_ids, :step_cancellation_option) SENSITIVE = [] 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.
479 480 481 482 483 484 485 |
# File 'lib/aws-sdk-emr/types.rb', line 479 class CancelStepsInput < Struct.new( :cluster_id, :step_ids, :step_cancellation_option) SENSITIVE = [] include Aws::Structure end |