Interface CfnBot.SlotTypeValueProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBot.SlotTypeValueProperty.Jsii$Proxy
Enclosing class:
CfnBot

@Stability(Stable) public static interface CfnBot.SlotTypeValueProperty extends software.amazon.jsii.JsiiSerializable
Each slot type can have a set of values.

Each SlotTypeValue represents a value that the slot type can take.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.lex.*;
 SlotTypeValueProperty slotTypeValueProperty = SlotTypeValueProperty.builder()
         .sampleValue(SampleValueProperty.builder()
                 .value("value")
                 .build())
         // the properties below are optional
         .synonyms(List.of(SampleValueProperty.builder()
                 .value("value")
                 .build()))
         .build();