Class: Aws::EMR::Types::ListStepsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::ListStepsOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emr/types.rb
Overview
This output contains the list of steps returned in reverse order. This means that the last step is the first element in the list.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#marker ⇒ String
The maximum number of steps that a single ‘ListSteps` action returns is 50.
-
#steps ⇒ Array<Types::StepSummary>
The filtered list of steps for the cluster.
Instance Attribute Details
#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.
4337 4338 4339 4340 4341 4342 |
# File 'lib/aws-sdk-emr/types.rb', line 4337 class ListStepsOutput < Struct.new( :steps, :marker) SENSITIVE = [] include Aws::Structure end |
#steps ⇒ Array<Types::StepSummary>
The filtered list of steps for the cluster.
4337 4338 4339 4340 4341 4342 |
# File 'lib/aws-sdk-emr/types.rb', line 4337 class ListStepsOutput < Struct.new( :steps, :marker) SENSITIVE = [] include Aws::Structure end |