Class: Aws::SSM::Types::StepExecutionFilter

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ssm/types.rb

Overview

A filter to limit the amount of step execution information returned by the call.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

One or more keys to limit the results. Valid filter keys include the following: StepName, Action, StepExecutionId, StepExecutionStatus, StartTimeBefore, StartTimeAfter.

Returns:

  • (String)


17323
17324
17325
17326
17327
17328
# File 'lib/aws-sdk-ssm/types.rb', line 17323

class StepExecutionFilter < Struct.new(
  :key,
  :values)
  SENSITIVE = []
  include Aws::Structure
end

#valuesArray<String>

The values of the filter key.

Returns:

  • (Array<String>)


17323
17324
17325
17326
17327
17328
# File 'lib/aws-sdk-ssm/types.rb', line 17323

class StepExecutionFilter < Struct.new(
  :key,
  :values)
  SENSITIVE = []
  include Aws::Structure
end