Bot Intent Closing Setting
data class BotIntentClosingSetting(val closingResponse: BotResponseSpecification? = null, val conditional: BotConditionalSpecification? = null, val isActive: Boolean? = null, val nextStep: BotDialogState? = null)
Constructors
Link copied to clipboard
constructor(closingResponse: BotResponseSpecification? = null, conditional: BotConditionalSpecification? = null, isActive: Boolean? = null, nextStep: BotDialogState? = null)
Properties
Link copied to clipboard
The response that Amazon Lex sends to the user when the intent is complete.
Link copied to clipboard
A list of conditional branches associated with the intent's closing response. These branches are executed when the nextStep
attribute is set to EvalutateConditional
.
Link copied to clipboard
Specifies the next step that the bot executes after playing the intent's closing response.