Class: Aws::SSM::Types::OpsItemEventFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::OpsItemEventFilter
- Defined in:
- gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb
Overview
Describes a filter for a specific list of OpsItem events. You can filter event information by using tags. You specify tags by using a key-value pair mapping.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The name of the filter key.
-
#operator ⇒ String
The operator used by the filter call.
-
#values ⇒ Array<String>
The values for the filter, consisting of one or more OpsItem IDs.
Instance Attribute Details
#key ⇒ String
The name of the filter key. Currently, the only supported value is
OpsItemId
.
13470 13471 13472 13473 13474 13475 13476 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 13470 class OpsItemEventFilter < Struct.new( :key, :values, :operator) SENSITIVE = [] include Aws::Structure end |
#operator ⇒ String
The operator used by the filter call. Currently, the only supported
value is Equal
.
13470 13471 13472 13473 13474 13475 13476 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 13470 class OpsItemEventFilter < Struct.new( :key, :values, :operator) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The values for the filter, consisting of one or more OpsItem IDs.
13470 13471 13472 13473 13474 13475 13476 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 13470 class OpsItemEventFilter < Struct.new( :key, :values, :operator) SENSITIVE = [] include Aws::Structure end |