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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBot.DialogActionPropertystatic final classAn 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.- See Also:
-
getSlotToElicit
If the dialog action isElicitSlot, defines the slot to elicit from the user.- See Also:
-
getSuppressNextMessage
When true the next message for the intent is not used.Returns union: either
BooleanorIResolvable- See Also:
-
builder
-