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
Note:
When making an API call, you may pass Filter data as a hash:
{
field: "NAME", # required, accepts NAME
operator: "EQUALS", # required, accepts EQUALS
value: "NonEmptyString", # required
}
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.
1094 1095 1096 1097 1098 1099 1100 |
# File 'gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/types.rb', line 1094 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.
1094 1095 1096 1097 1098 1099 1100 |
# File 'gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/types.rb', line 1094 class Filter < Struct.new( :field, :operator, :value) SENSITIVE = [] include Aws::Structure end |