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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBot.SlotPriorityPropertystatic final classAn 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.- See Also:
-
getSlotName
The name of the slot.- See Also:
-
builder
-