Interface CfnBot.IntentOverrideProperty

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

@Stability(Stable) public static interface CfnBot.IntentOverrideProperty extends software.amazon.jsii.JsiiSerializable
Override settings to configure the intent state.

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