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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#cluster_idString

The ‘ClusterID` for which specified steps will be canceled. Use RunJobFlow and ListClusters to get ClusterIDs.

Returns:

  • (String)


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_idsArray<String>

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

Returns:

  • (Array<String>)


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