Class: Aws::EMR::Types::ListStepsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::ListStepsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emr/types.rb
Overview
This input determines which steps to list.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_id ⇒ String
The identifier of the cluster for which to list the steps.
-
#marker ⇒ String
The maximum number of steps that a single ‘ListSteps` action returns is 50.
-
#step_ids ⇒ Array<String>
The filter to limit the step list based on the identifier of the steps.
-
#step_states ⇒ Array<String>
The filter to limit the step list based on certain states.
Instance Attribute Details
#cluster_id ⇒ String
The identifier of the cluster for which to list the steps.
4312 4313 4314 4315 4316 4317 4318 4319 |
# File 'lib/aws-sdk-emr/types.rb', line 4312 class ListStepsInput < Struct.new( :cluster_id, :step_states, :step_ids, :marker) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
The maximum number of steps that a single ‘ListSteps` action returns is 50. To return a longer list of steps, use multiple `ListSteps` actions along with the `Marker` parameter, which is a pagination token that indicates the next set of results to retrieve.
4312 4313 4314 4315 4316 4317 4318 4319 |
# File 'lib/aws-sdk-emr/types.rb', line 4312 class ListStepsInput < Struct.new( :cluster_id, :step_states, :step_ids, :marker) SENSITIVE = [] include Aws::Structure end |
#step_ids ⇒ Array<String>
The filter to limit the step list based on the identifier of the steps. You can specify a maximum of ten Step IDs. The character constraint applies to the overall length of the array.
4312 4313 4314 4315 4316 4317 4318 4319 |
# File 'lib/aws-sdk-emr/types.rb', line 4312 class ListStepsInput < Struct.new( :cluster_id, :step_states, :step_ids, :marker) SENSITIVE = [] include Aws::Structure end |
#step_states ⇒ Array<String>
The filter to limit the step list based on certain states.
4312 4313 4314 4315 4316 4317 4318 4319 |
# File 'lib/aws-sdk-emr/types.rb', line 4312 class ListStepsInput < Struct.new( :cluster_id, :step_states, :step_ids, :marker) SENSITIVE = [] include Aws::Structure end |