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

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

Overview

Note:

When making an API call, you may pass StepExecutionFilter data as a hash:

{
  key: "StartTimeBefore", # required, accepts StartTimeBefore, StartTimeAfter, StepExecutionStatus, StepExecutionId, StepName, Action
  values: ["StepExecutionFilterValue"], # required
}

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

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)


12629
12630
12631
12632
12633
# File 'lib/aws-sdk-ssm/types.rb', line 12629

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

#valuesArray<String>

The values of the filter key.

Returns:

  • (Array<String>)


12629
12630
12631
12632
12633
# File 'lib/aws-sdk-ssm/types.rb', line 12629

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