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();