Class: Aws::LexModelsV2::Types::ExportFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::ExportFilter
- Defined in:
- gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb
Overview
Filters the response form the ListExports 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 values to use to filter the response.
Instance Attribute Details
#name ⇒ String
The name of the field to use for filtering.
7456 7457 7458 7459 7460 7461 7462 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 7456 class ExportFilter < Struct.new( :name, :values, :operator) SENSITIVE = [] include Aws::Structure end |
#operator ⇒ String
The operator to use for the filter. Specify EQ when the
ListExports
operation should return only resource types that equal
the specified value. Specify CO when the ListExports
operation
should return resource types that contain the specified value.
7456 7457 7458 7459 7460 7461 7462 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 7456 class ExportFilter < Struct.new( :name, :values, :operator) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The values to use to filter the response. The values must be Bot
,
BotLocale
, or CustomVocabulary
.
7456 7457 7458 7459 7460 7461 7462 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 7456 class ExportFilter < Struct.new( :name, :values, :operator) SENSITIVE = [] include Aws::Structure end |