Class: Aws::SsmSap::Types::Filter
- Inherits:
-
Struct
- Object
- Struct
- Aws::SsmSap::Types::Filter
- Defined in:
- gems/aws-sdk-ssmsap/lib/aws-sdk-ssmsap/types.rb
Overview
A specific result obtained by specifying the name, value, and operator.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the filter.
-
#operator ⇒ String
The operator for the filter.
-
#value ⇒ String
The filter values.
Instance Attribute Details
#name ⇒ String
The name of the filter. Filter names are case-sensitive.
567 568 569 570 571 572 573 |
# File 'gems/aws-sdk-ssmsap/lib/aws-sdk-ssmsap/types.rb', line 567 class Filter < Struct.new( :name, :value, :operator) SENSITIVE = [] include Aws::Structure end |
#operator ⇒ String
The operator for the filter.
567 568 569 570 571 572 573 |
# File 'gems/aws-sdk-ssmsap/lib/aws-sdk-ssmsap/types.rb', line 567 class Filter < Struct.new( :name, :value, :operator) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The filter values. Filter values are case-sensitive. If you specify multiple values for a filter, the values are joined with an OR, and the request returns all results that match any of the specified values
567 568 569 570 571 572 573 |
# File 'gems/aws-sdk-ssmsap/lib/aws-sdk-ssmsap/types.rb', line 567 class Filter < Struct.new( :name, :value, :operator) SENSITIVE = [] include Aws::Structure end |