Class: Aws::LexModelsV2::Types::SlotTypeFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::SlotTypeFilter
- Defined in:
- gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb
Overview
Filters the response from the ListSlotTypes operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the field to use for filtering.
-
#operator ⇒ String
The operator to use for the filter.
-
#values ⇒ Array<String>
The value to use to filter the response.
Instance Attribute Details
#name ⇒ String
The name of the field to use for filtering.
13168 13169 13170 13171 13172 13173 13174 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 13168 class SlotTypeFilter < Struct.new( :name, :values, :operator) SENSITIVE = [] include Aws::Structure end |
#operator ⇒ String
The operator to use for the filter. Specify EQ when the
ListSlotTypes operation should return only aliases that equal the
specified value. Specify CO when the ListSlotTypes operation
should return aliases that contain the specified value.
13168 13169 13170 13171 13172 13173 13174 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 13168 class SlotTypeFilter < Struct.new( :name, :values, :operator) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The value to use to filter the response.
13168 13169 13170 13171 13172 13173 13174 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 13168 class SlotTypeFilter < Struct.new( :name, :values, :operator) SENSITIVE = [] include Aws::Structure end |