amazonka-lexv2-models-2.0: Amazon Lex Model Building V2 SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.LexV2Models.Types.BotSummary

Description

 
Synopsis

Documentation

data BotSummary Source #

Summary information about a bot returned by the ListBots operation.

See: newBotSummary smart constructor.

Constructors

BotSummary' 

Fields

Instances

Instances details
FromJSON BotSummary Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotSummary

Generic BotSummary Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotSummary

Associated Types

type Rep BotSummary :: Type -> Type #

Read BotSummary Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotSummary

Show BotSummary Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotSummary

NFData BotSummary Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotSummary

Methods

rnf :: BotSummary -> () #

Eq BotSummary Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotSummary

Hashable BotSummary Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotSummary

type Rep BotSummary Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotSummary

type Rep BotSummary = D1 ('MetaData "BotSummary" "Amazonka.LexV2Models.Types.BotSummary" "amazonka-lexv2-models-2.0-5mExjJXBfuO6j0ascNcayE" 'False) (C1 ('MetaCons "BotSummary'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "botId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "botName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "botStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe BotStatus)))) :*: (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "lastUpdatedDateTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "latestBotVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newBotSummary :: BotSummary Source #

Create a value of BotSummary 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:botId:BotSummary', botSummary_botId - The unique identifier assigned to the bot. Use this ID to get detailed information about the bot with the DescribeBot operation.

$sel:botName:BotSummary', botSummary_botName - The name of the bot.

$sel:botStatus:BotSummary', botSummary_botStatus - The current status of the bot. When the status is Available the bot is ready for use.

$sel:description:BotSummary', botSummary_description - The description of the bot.

$sel:lastUpdatedDateTime:BotSummary', botSummary_lastUpdatedDateTime - The date and time that the bot was last updated.

$sel:latestBotVersion:BotSummary', botSummary_latestBotVersion - The latest numerical version in use for the bot.

botSummary_botId :: Lens' BotSummary (Maybe Text) Source #

The unique identifier assigned to the bot. Use this ID to get detailed information about the bot with the DescribeBot operation.

botSummary_botStatus :: Lens' BotSummary (Maybe BotStatus) Source #

The current status of the bot. When the status is Available the bot is ready for use.

botSummary_description :: Lens' BotSummary (Maybe Text) Source #

The description of the bot.

botSummary_lastUpdatedDateTime :: Lens' BotSummary (Maybe UTCTime) Source #

The date and time that the bot was last updated.

botSummary_latestBotVersion :: Lens' BotSummary (Maybe Text) Source #

The latest numerical version in use for the bot.