Class: Aws::QConnect::Types::Filter
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::Filter
- Defined in:
- gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb
Overview
A search filter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#field ⇒ String
The field on which to filter.
-
#operator ⇒ String
The operator to use for comparing the field’s value with the provided value.
-
#value ⇒ String
The desired field value on which to filter.
Instance Attribute Details
#field ⇒ String
The field on which to filter.
2734 2735 2736 2737 2738 2739 2740 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 2734 class Filter < Struct.new( :field, :operator, :value) SENSITIVE = [] include Aws::Structure end |