Class: Aws::SSM::Types::ComplianceStringFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::ComplianceStringFilter
- Defined in:
- gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb
Overview
One or more filters. Use a filter to return a more specific list of results.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The name of the filter.
-
#type ⇒ String
The type of comparison that should be performed for the value: Equal, NotEqual, BeginWith, LessThan, or GreaterThan.
-
#values ⇒ Array<String>
The value for which to search.
Instance Attribute Details
#key ⇒ String
The name of the filter.
2730 2731 2732 2733 2734 2735 2736 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 2730 class ComplianceStringFilter < Struct.new( :key, :values, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of comparison that should be performed for the value: Equal, NotEqual, BeginWith, LessThan, or GreaterThan.
2730 2731 2732 2733 2734 2735 2736 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 2730 class ComplianceStringFilter < Struct.new( :key, :values, :type) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The value for which to search.
2730 2731 2732 2733 2734 2735 2736 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 2730 class ComplianceStringFilter < Struct.new( :key, :values, :type) SENSITIVE = [] include Aws::Structure end |