Class: Aws::SSMIncidents::Types::Filter
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSMIncidents::Types::Filter
- Defined in:
- gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb
Overview
Filter the selection by using a condition.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#condition ⇒ Types::Condition
The condition accepts before or after a specified time, equal to a string, or equal to an integer.
-
#key ⇒ String
The key that you're filtering on.
Instance Attribute Details
#condition ⇒ Types::Condition
The condition accepts before or after a specified time, equal to a string, or equal to an integer.
755 756 757 758 759 760 |
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 755 class Filter < Struct.new( :condition, :key) SENSITIVE = [] include Aws::Structure end |