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();
 
  • Method Details