Interface CfnBot.DialogActionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBot.DialogActionProperty.Jsii$Proxy
- Enclosing class:
CfnBot
@Stability(Stable)
public static interface CfnBot.DialogActionProperty
extends software.amazon.jsii.JsiiSerializable
Defines the action that the bot executes at runtime when the conversation reaches this step.
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.*; DialogActionProperty dialogActionProperty = DialogActionProperty.builder() .type("type") // the properties below are optional .slotToElicit("slotToElicit") .suppressNextMessage(false) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBot.DialogActionProperty
static final class
An implementation forCfnBot.DialogActionProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getType
The action that the bot should execute. -
getSlotToElicit
If the dialog action isElicitSlot
, defines the slot to elicit from the user. -
getSuppressNextMessage
When true the next message for the intent is not used. -
builder
-