Class: Aws::SSM::Types::AutomationExecutionFilter

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 AutomationExecutionFilter data as a hash:

{
  key: "DocumentNamePrefix", # required, accepts DocumentNamePrefix, ExecutionStatus, ExecutionId, ParentExecutionId, CurrentAction, StartTimeBefore, StartTimeAfter, AutomationType
  values: ["AutomationExecutionFilterValue"], # required
}

A filter used to match specific automation executions. This is used to limit the scope of Automation execution information returned.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

One or more keys to limit the results. Valid filter keys include the following: DocumentNamePrefix, ExecutionStatus, ExecutionId, ParentExecutionId, CurrentAction, StartTimeBefore, StartTimeAfter.

Returns:

  • (String)


939
940
941
942
943
# File 'lib/aws-sdk-ssm/types.rb', line 939

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

#valuesArray<String>

The values used to limit the execution information associated with the filter’s key.

Returns:

  • (Array<String>)


939
940
941
942
943
# File 'lib/aws-sdk-ssm/types.rb', line 939

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