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

Description

 
Synopsis

Documentation

data SlotTypeValue Source #

Each slot type can have a set of values. Each SlotTypeValue represents a value that the slot type can take.

See: newSlotTypeValue smart constructor.

Constructors

SlotTypeValue' 

Fields

Instances

Instances details
FromJSON SlotTypeValue Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.SlotTypeValue

ToJSON SlotTypeValue Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.SlotTypeValue

Generic SlotTypeValue Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.SlotTypeValue

Associated Types

type Rep SlotTypeValue :: Type -> Type #

Read SlotTypeValue Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.SlotTypeValue

Show SlotTypeValue Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.SlotTypeValue

NFData SlotTypeValue Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.SlotTypeValue

Methods

rnf :: SlotTypeValue -> () #

Eq SlotTypeValue Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.SlotTypeValue

Hashable SlotTypeValue Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.SlotTypeValue

type Rep SlotTypeValue Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.SlotTypeValue

type Rep SlotTypeValue = D1 ('MetaData "SlotTypeValue" "Amazonka.LexV2Models.Types.SlotTypeValue" "amazonka-lexv2-models-2.0-5mExjJXBfuO6j0ascNcayE" 'False) (C1 ('MetaCons "SlotTypeValue'" 'PrefixI 'True) (S1 ('MetaSel ('Just "sampleValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe SampleValue)) :*: S1 ('MetaSel ('Just "synonyms") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty SampleValue)))))

newSlotTypeValue :: SlotTypeValue Source #

Create a value of SlotTypeValue 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:sampleValue:SlotTypeValue', slotTypeValue_sampleValue - The value of the slot type entry.

$sel:synonyms:SlotTypeValue', slotTypeValue_synonyms - Additional values related to the slot type entry.

slotTypeValue_sampleValue :: Lens' SlotTypeValue (Maybe SampleValue) Source #

The value of the slot type entry.

slotTypeValue_synonyms :: Lens' SlotTypeValue (Maybe (NonEmpty SampleValue)) Source #

Additional values related to the slot type entry.