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.BotVersionSummary

Description

 
Synopsis

Documentation

data BotVersionSummary Source #

Summary information about a bot version returned by the ListBotVersions operation.

See: newBotVersionSummary smart constructor.

Constructors

BotVersionSummary' 

Fields

Instances

Instances details
FromJSON BotVersionSummary Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotVersionSummary

Generic BotVersionSummary Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotVersionSummary

Associated Types

type Rep BotVersionSummary :: Type -> Type #

Read BotVersionSummary Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotVersionSummary

Show BotVersionSummary Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotVersionSummary

NFData BotVersionSummary Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotVersionSummary

Methods

rnf :: BotVersionSummary -> () #

Eq BotVersionSummary Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotVersionSummary

Hashable BotVersionSummary Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotVersionSummary

type Rep BotVersionSummary Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotVersionSummary

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

newBotVersionSummary :: BotVersionSummary Source #

Create a value of BotVersionSummary 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:botName:BotVersionSummary', botVersionSummary_botName - The name of the bot associated with the version.

$sel:botStatus:BotVersionSummary', botVersionSummary_botStatus - The status of the bot. When the status is available, the version of the bot is ready for use.

$sel:botVersion:BotVersionSummary', botVersionSummary_botVersion - The numeric version of the bot, or DRAFT to indicate that this is the version of the bot that can be updated..

$sel:creationDateTime:BotVersionSummary', botVersionSummary_creationDateTime - A timestamp of the date and time that the version was created.

$sel:description:BotVersionSummary', botVersionSummary_description - The description of the version.

botVersionSummary_botName :: Lens' BotVersionSummary (Maybe Text) Source #

The name of the bot associated with the version.

botVersionSummary_botStatus :: Lens' BotVersionSummary (Maybe BotStatus) Source #

The status of the bot. When the status is available, the version of the bot is ready for use.

botVersionSummary_botVersion :: Lens' BotVersionSummary (Maybe Text) Source #

The numeric version of the bot, or DRAFT to indicate that this is the version of the bot that can be updated..

botVersionSummary_creationDateTime :: Lens' BotVersionSummary (Maybe UTCTime) Source #

A timestamp of the date and time that the version was created.