Class: Aws::LexModelsV2::Types::BotFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::BotFilter
- Defined in:
- gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb
Overview
Note:
When making an API call, you may pass BotFilter data as a hash:
{
name: "BotName", # required, accepts BotName
values: ["FilterValue"], # required
operator: "CO", # required, accepts CO, EQ
}
Filters the responses returned by the ListBots
operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the field to filter the list of bots.
-
#operator ⇒ String
The operator to use for the filter.
-
#values ⇒ Array<String>
The value to use for filtering the list of bots.
Instance Attribute Details
#name ⇒ String
The name of the field to filter the list of bots.
444 445 446 447 448 449 450 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 444 class BotFilter < Struct.new( :name, :values, :operator) SENSITIVE = [] include Aws::Structure end |
#operator ⇒ String
The operator to use for the filter. Specify EQ
when the ListBots
operation should return only aliases that equal the specified value.
Specify CO
when the ListBots
operation should return aliases
that contain the specified value.
444 445 446 447 448 449 450 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 444 class BotFilter < Struct.new( :name, :values, :operator) SENSITIVE = [] include Aws::Structure end |