Class: Aws::SSM::Types::AutomationExecutionFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::AutomationExecutionFilter
- Defined in:
- gems/aws-sdk-ssm/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, TagKey, TargetResourceGroup, AutomationSubtype, OpsItemId
values: ["AutomationExecutionFilterValue"], # required
}
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
-
#key ⇒ String
One or more keys to limit the results.
-
#values ⇒ Array<String>
The values used to limit the execution information associated with the filter's key.
Instance Attribute Details
#key ⇒ String
One or more keys to limit the results.
1379 1380 1381 1382 1383 1384 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 1379 class AutomationExecutionFilter < Struct.new( :key, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The values used to limit the execution information associated with the filter's key.
1379 1380 1381 1382 1383 1384 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 1379 class AutomationExecutionFilter < Struct.new( :key, :values) SENSITIVE = [] include Aws::Structure end |