Interface CfnBot.SlotValueOverrideMapProperty

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

@Stability(Stable) public static interface CfnBot.SlotValueOverrideMapProperty extends software.amazon.jsii.JsiiSerializable
Maps a slot name to the SlotValueOverride object.

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_;
 SlotValueOverrideMapProperty slotValueOverrideMapProperty = SlotValueOverrideMapProperty.builder()
         .slotName("slotName")
         .slotValueOverride(SlotValueOverrideProperty.builder()
                 .shape("shape")
                 .value(SlotValueProperty.builder()
                         .interpretedValue("interpretedValue")
                         .build())
                 .values(List.of(slotValueOverrideProperty_))
                 .build())
         .build();