Class: Aws::EMR::Types::CancelStepsInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb

Overview

The input argument to the CancelSteps operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cluster_idString

The ClusterID for the specified steps that will be canceled. Use RunJobFlow and ListClusters to get ClusterIDs.

Returns:

  • (String)


479
480
481
482
483
484
485
# File 'gems/aws-sdk-emr/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_optionString

The option to choose to cancel RUNNING steps. By default, the value is SEND_INTERRUPT.

Returns:

  • (String)


479
480
481
482
483
484
485
# File 'gems/aws-sdk-emr/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_idsArray<String>

The list of StepIDs to cancel. Use ListSteps to get steps and their states for the specified cluster.

Returns:

  • (Array<String>)


479
480
481
482
483
484
485
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 479

class CancelStepsInput < Struct.new(
  :cluster_id,
  :step_ids,
  :step_cancellation_option)
  SENSITIVE = []
  include Aws::Structure
end