Interface CfnBot.CompositeSlotTypeSettingProperty

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

@Stability(Stable) public static interface CfnBot.CompositeSlotTypeSettingProperty extends software.amazon.jsii.JsiiSerializable
A composite slot is a combination of two or more slots that capture multiple pieces of information in a single user input.

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.*;
 CompositeSlotTypeSettingProperty compositeSlotTypeSettingProperty = CompositeSlotTypeSettingProperty.builder()
         .subSlots(List.of(SubSlotTypeCompositionProperty.builder()
                 .name("name")
                 .slotTypeId("slotTypeId")
                 .build()))
         .build();
 

See Also: