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

Description

 
Synopsis

Documentation

data BotAliasHistoryEvent Source #

Provides a record of an event that affects a bot alias. For example, when the version of a bot that the alias points to changes.

See: newBotAliasHistoryEvent smart constructor.

Constructors

BotAliasHistoryEvent' 

Fields

Instances

Instances details
FromJSON BotAliasHistoryEvent Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotAliasHistoryEvent

Generic BotAliasHistoryEvent Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotAliasHistoryEvent

Associated Types

type Rep BotAliasHistoryEvent :: Type -> Type #

Read BotAliasHistoryEvent Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotAliasHistoryEvent

Show BotAliasHistoryEvent Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotAliasHistoryEvent

NFData BotAliasHistoryEvent Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotAliasHistoryEvent

Methods

rnf :: BotAliasHistoryEvent -> () #

Eq BotAliasHistoryEvent Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotAliasHistoryEvent

Hashable BotAliasHistoryEvent Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotAliasHistoryEvent

type Rep BotAliasHistoryEvent Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.BotAliasHistoryEvent

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

newBotAliasHistoryEvent :: BotAliasHistoryEvent Source #

Create a value of BotAliasHistoryEvent 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:botVersion:BotAliasHistoryEvent', botAliasHistoryEvent_botVersion - The version of the bot that was used in the event.

$sel:endDate:BotAliasHistoryEvent', botAliasHistoryEvent_endDate - The date and time that the event ended.

$sel:startDate:BotAliasHistoryEvent', botAliasHistoryEvent_startDate - The date and time that the event started.

botAliasHistoryEvent_botVersion :: Lens' BotAliasHistoryEvent (Maybe Text) Source #

The version of the bot that was used in the event.

botAliasHistoryEvent_endDate :: Lens' BotAliasHistoryEvent (Maybe UTCTime) Source #

The date and time that the event ended.

botAliasHistoryEvent_startDate :: Lens' BotAliasHistoryEvent (Maybe UTCTime) Source #

The date and time that the event started.