Class: Aws::ConnectWisdomService::Types::Filter
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectWisdomService::Types::Filter
- Defined in:
- gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/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.
1314 1315 1316 1317 1318 1319 1320 |
# File 'gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/types.rb', line 1314 class Filter < Struct.new( :field, :operator, :value) SENSITIVE = [] include Aws::Structure end |
#operator ⇒ String
The operator to use for comparing the field’s value with the provided value.
1314 1315 1316 1317 1318 1319 1320 |
# File 'gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/types.rb', line 1314 class Filter < Struct.new( :field, :operator, :value) SENSITIVE = [] include Aws::Structure end |