| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.LexV2Models.Types.BotFilter
Description
Synopsis
Documentation
Filters the responses returned by the ListBots operation.
See: newBotFilter smart constructor.
Constructors
| BotFilter' | |
Fields
| |
Instances
| ToJSON BotFilter Source # | |
Defined in Amazonka.LexV2Models.Types.BotFilter | |
| Generic BotFilter Source # | |
| Read BotFilter Source # | |
| Show BotFilter Source # | |
| NFData BotFilter Source # | |
Defined in Amazonka.LexV2Models.Types.BotFilter | |
| Eq BotFilter Source # | |
| Hashable BotFilter Source # | |
Defined in Amazonka.LexV2Models.Types.BotFilter | |
| type Rep BotFilter Source # | |
Defined in Amazonka.LexV2Models.Types.BotFilter type Rep BotFilter = D1 ('MetaData "BotFilter" "Amazonka.LexV2Models.Types.BotFilter" "amazonka-lexv2-models-2.0-5mExjJXBfuO6j0ascNcayE" 'False) (C1 ('MetaCons "BotFilter'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 BotFilterName) :*: (S1 ('MetaSel ('Just "values") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Text)) :*: S1 ('MetaSel ('Just "operator") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 BotFilterOperator)))) | |
Arguments
| :: BotFilterName | |
| -> NonEmpty Text | |
| -> BotFilterOperator | |
| -> BotFilter |
Create a value of BotFilter with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:name:BotFilter', botFilter_name - The name of the field to filter the list of bots.
$sel:values:BotFilter', botFilter_values - The value to use for filtering the list of bots.
$sel:operator:BotFilter', botFilter_operator - 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.
botFilter_name :: Lens' BotFilter BotFilterName Source #
The name of the field to filter the list of bots.
botFilter_values :: Lens' BotFilter (NonEmpty Text) Source #
The value to use for filtering the list of bots.
botFilter_operator :: Lens' BotFilter BotFilterOperator Source #
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.