libZSservicesZSamazonka-lex-modelsZSamazonka-lex-models
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.LexModels.Types.UtteranceData

Description

 
Synopsis

Documentation

data UtteranceData Source #

Provides information about a single utterance that was made to your bot.

See: newUtteranceData smart constructor.

Constructors

UtteranceData' 

Fields

Instances

Instances details
Eq UtteranceData Source # 
Instance details

Defined in Amazonka.LexModels.Types.UtteranceData

Read UtteranceData Source # 
Instance details

Defined in Amazonka.LexModels.Types.UtteranceData

Show UtteranceData Source # 
Instance details

Defined in Amazonka.LexModels.Types.UtteranceData

Generic UtteranceData Source # 
Instance details

Defined in Amazonka.LexModels.Types.UtteranceData

Associated Types

type Rep UtteranceData :: Type -> Type #

NFData UtteranceData Source # 
Instance details

Defined in Amazonka.LexModels.Types.UtteranceData

Methods

rnf :: UtteranceData -> () #

Hashable UtteranceData Source # 
Instance details

Defined in Amazonka.LexModels.Types.UtteranceData

FromJSON UtteranceData Source # 
Instance details

Defined in Amazonka.LexModels.Types.UtteranceData

type Rep UtteranceData Source # 
Instance details

Defined in Amazonka.LexModels.Types.UtteranceData

type Rep UtteranceData = D1 ('MetaData "UtteranceData" "Amazonka.LexModels.Types.UtteranceData" "libZSservicesZSamazonka-lex-modelsZSamazonka-lex-models" 'False) (C1 ('MetaCons "UtteranceData'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "firstUtteredDate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "count") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int))) :*: (S1 ('MetaSel ('Just "utteranceString") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "lastUtteredDate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "distinctUsers") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int))))))

newUtteranceData :: UtteranceData Source #

Create a value of UtteranceData 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:firstUtteredDate:UtteranceData', utteranceData_firstUtteredDate - The date that the utterance was first recorded.

$sel:count:UtteranceData', utteranceData_count - The number of times that the utterance was processed.

$sel:utteranceString:UtteranceData', utteranceData_utteranceString - The text that was entered by the user or the text representation of an audio clip.

$sel:lastUtteredDate:UtteranceData', utteranceData_lastUtteredDate - The date that the utterance was last recorded.

$sel:distinctUsers:UtteranceData', utteranceData_distinctUsers - The total number of individuals that used the utterance.

utteranceData_firstUtteredDate :: Lens' UtteranceData (Maybe UTCTime) Source #

The date that the utterance was first recorded.

utteranceData_count :: Lens' UtteranceData (Maybe Int) Source #

The number of times that the utterance was processed.

utteranceData_utteranceString :: Lens' UtteranceData (Maybe Text) Source #

The text that was entered by the user or the text representation of an audio clip.

utteranceData_lastUtteredDate :: Lens' UtteranceData (Maybe UTCTime) Source #

The date that the utterance was last recorded.

utteranceData_distinctUsers :: Lens' UtteranceData (Maybe Int) Source #

The total number of individuals that used the utterance.