Class: Aws::CodeCatalyst::Types::Filter
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCatalyst::Types::Filter
- Defined in:
- gems/aws-sdk-codecatalyst/lib/aws-sdk-codecatalyst/types.rb
Overview
Information about a filter used to limit results of a query.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comparison_operator ⇒ String
The operator used to compare the fields.
-
#key ⇒ String
A key that can be used to sort results.
-
#values ⇒ Array<String>
The values of the key.
Instance Attribute Details
#comparison_operator ⇒ String
The operator used to compare the fields.
950 951 952 953 954 955 956 |
# File 'gems/aws-sdk-codecatalyst/lib/aws-sdk-codecatalyst/types.rb', line 950 class Filter < Struct.new( :key, :values, :comparison_operator) SENSITIVE = [] include Aws::Structure end |