Interface CfnBotPropsMixin.DialogActionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBotPropsMixin.DialogActionProperty.Jsii$Proxy
- Enclosing class:
CfnBotPropsMixin
@Stability(Stable)
public static interface CfnBotPropsMixin.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.mixins.preview.services.lex.mixins.*;
DialogActionProperty dialogActionProperty = DialogActionProperty.builder()
.slotToElicit("slotToElicit")
.suppressNextMessage(false)
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBotPropsMixin.DialogActionPropertystatic final classAn implementation forCfnBotPropsMixin.DialogActionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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:
-
getType
The action that the bot should execute.- See Also:
-
builder
-