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

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

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

One or more keys to limit the results.

Returns:

  • (String)


1422
1423
1424
1425
1426
1427
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 1422

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

#valuesArray<String>

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

Returns:

  • (Array<String>)


1422
1423
1424
1425
1426
1427
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 1422

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