Bot Initial Response Setting Args
data class BotInitialResponseSettingArgs(val codeHook: Output<BotDialogCodeHookInvocationSettingArgs>? = null, val conditional: Output<BotConditionalSpecificationArgs>? = null, val initialResponse: Output<BotResponseSpecificationArgs>? = null, val nextStep: Output<BotDialogStateArgs>? = null) : ConvertibleToJava<BotInitialResponseSettingArgs>
Constructors
Link copied to clipboard
constructor(codeHook: Output<BotDialogCodeHookInvocationSettingArgs>? = null, conditional: Output<BotConditionalSpecificationArgs>? = null, initialResponse: Output<BotResponseSpecificationArgs>? = null, nextStep: Output<BotDialogStateArgs>? = null)
Properties
Link copied to clipboard
Settings that specify the dialog code hook that is called by Amazon Lex at a step of the conversation.
Link copied to clipboard
Provides a list of conditional branches. Branches are evaluated in the order that they are entered in the list. The first branch with a condition that evaluates to true is executed. The last branch in the list is the default branch. The default branch should not have any condition expression. The default branch is executed if no other branch has a matching condition.
Link copied to clipboard
Specifies a list of message groups that Amazon Lex uses to respond the user input.
Link copied to clipboard
The next step in the conversation.