Class: Aws::EMR::Types::Step
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::Step
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emr/types.rb
Overview
This represents a step in a cluster.
Instance Attribute Summary collapse
-
#action_on_failure ⇒ String
This specifies what action to take when the cluster step fails.
-
#config ⇒ Types::HadoopStepConfig
The Hadoop job configuration of the cluster step.
-
#id ⇒ String
The identifier of the cluster step.
-
#name ⇒ String
The name of the cluster step.
-
#status ⇒ Types::StepStatus
The current execution status details of the cluster step.
Instance Attribute Details
#action_on_failure ⇒ String
This specifies what action to take when the cluster step fails. Possible values are TERMINATE_CLUSTER, CANCEL_AND_WAIT, and CONTINUE.
4889 4890 4891 4892 4893 4894 4895 4896 |
# File 'lib/aws-sdk-emr/types.rb', line 4889 class Step < Struct.new( :id, :name, :config, :action_on_failure, :status) include Aws::Structure end |
#config ⇒ Types::HadoopStepConfig
The Hadoop job configuration of the cluster step.
4889 4890 4891 4892 4893 4894 4895 4896 |
# File 'lib/aws-sdk-emr/types.rb', line 4889 class Step < Struct.new( :id, :name, :config, :action_on_failure, :status) include Aws::Structure end |
#id ⇒ String
The identifier of the cluster step.
4889 4890 4891 4892 4893 4894 4895 4896 |
# File 'lib/aws-sdk-emr/types.rb', line 4889 class Step < Struct.new( :id, :name, :config, :action_on_failure, :status) include Aws::Structure end |
#name ⇒ String
The name of the cluster step.
4889 4890 4891 4892 4893 4894 4895 4896 |
# File 'lib/aws-sdk-emr/types.rb', line 4889 class Step < Struct.new( :id, :name, :config, :action_on_failure, :status) include Aws::Structure end |
#status ⇒ Types::StepStatus
The current execution status details of the cluster step.
4889 4890 4891 4892 4893 4894 4895 4896 |
# File 'lib/aws-sdk-emr/types.rb', line 4889 class Step < Struct.new( :id, :name, :config, :action_on_failure, :status) include Aws::Structure end |