Interface CfnBot.SlotPriorityProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBot.SlotPriorityProperty.Jsii$Proxy
- Enclosing class:
CfnBot
@Stability(Stable)
public static interface CfnBot.SlotPriorityProperty
extends software.amazon.jsii.JsiiSerializable
Sets the priority that Amazon Lex should use when eliciting slot values from a user.
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.*; SlotPriorityProperty slotPriorityProperty = SlotPriorityProperty.builder() .priority(123) .slotName("slotName") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBot.SlotPriorityProperty
static final class
An implementation forCfnBot.SlotPriorityProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The priority that Amazon Lex should apply to the slot.The name of the slot.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPriority
The priority that Amazon Lex should apply to the slot. -
getSlotName
The name of the slot. -
builder
-