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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBot.CompositeSlotTypeSettingPropertystatic final classAn implementation forCfnBot.CompositeSlotTypeSettingProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSubSlots
Subslots in the composite slot.- See Also:
-
builder
-