Interface CfnBot.SlotValueOverrideProperty

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

@Stability(Stable) public static interface CfnBot.SlotValueOverrideProperty extends software.amazon.jsii.JsiiSerializable
The slot values that Amazon Lex uses when it sets slot values in a dialog step.

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.*;
 SlotValueOverrideProperty slotValueOverrideProperty_;
 SlotValueOverrideProperty slotValueOverrideProperty = SlotValueOverrideProperty.builder()
         .shape("shape")
         .value(SlotValueProperty.builder()
                 .interpretedValue("interpretedValue")
                 .build())
         .values(List.of(slotValueOverrideProperty_))
         .build();
 

See Also: