Class: Aws::EMR::Types::ListStepsOutput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-emr/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

Instance Attribute Details

#markerString

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.

Returns:

  • (String)


4295
4296
4297
4298
4299
4300
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 4295

class ListStepsOutput < Struct.new(
  :steps,
  :marker)
  SENSITIVE = []
  include Aws::Structure
end

#stepsArray<Types::StepSummary>

The filtered list of steps for the cluster.

Returns:



4295
4296
4297
4298
4299
4300
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 4295

class ListStepsOutput < Struct.new(
  :steps,
  :marker)
  SENSITIVE = []
  include Aws::Structure
end