Class: Aws::EMR::Types::ListStepsInput

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

Instance Attribute Details

#cluster_idString

The identifier of the cluster for which to list the steps.

Returns:

  • (String)


4270
4271
4272
4273
4274
4275
4276
4277
# File 'lib/aws-sdk-emr/types.rb', line 4270

class ListStepsInput < Struct.new(
  :cluster_id,
  :step_states,
  :step_ids,
  :marker)
  SENSITIVE = []
  include Aws::Structure
end

#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)


4270
4271
4272
4273
4274
4275
4276
4277
# File 'lib/aws-sdk-emr/types.rb', line 4270

class ListStepsInput < Struct.new(
  :cluster_id,
  :step_states,
  :step_ids,
  :marker)
  SENSITIVE = []
  include Aws::Structure
end

#step_idsArray<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.

Returns:

  • (Array<String>)


4270
4271
4272
4273
4274
4275
4276
4277
# File 'lib/aws-sdk-emr/types.rb', line 4270

class ListStepsInput < Struct.new(
  :cluster_id,
  :step_states,
  :step_ids,
  :marker)
  SENSITIVE = []
  include Aws::Structure
end

#step_statesArray<String>

The filter to limit the step list based on certain states.

Returns:

  • (Array<String>)


4270
4271
4272
4273
4274
4275
4276
4277
# File 'lib/aws-sdk-emr/types.rb', line 4270

class ListStepsInput < Struct.new(
  :cluster_id,
  :step_states,
  :step_ids,
  :marker)
  SENSITIVE = []
  include Aws::Structure
end