V2models Intent Initial Response Setting
data class V2modelsIntentInitialResponseSetting(val codeHook: V2modelsIntentInitialResponseSettingCodeHook? = null, val conditional: V2modelsIntentInitialResponseSettingConditional? = null, val initialResponse: V2modelsIntentInitialResponseSettingInitialResponse? = null, val nextStep: V2modelsIntentInitialResponseSettingNextStep? = null)
Constructors
Link copied to clipboard
constructor(codeHook: V2modelsIntentInitialResponseSettingCodeHook? = null, conditional: V2modelsIntentInitialResponseSettingConditional? = null, initialResponse: V2modelsIntentInitialResponseSettingInitialResponse? = null, nextStep: V2modelsIntentInitialResponseSettingNextStep? = null)
Properties
Link copied to clipboard
Configuration block for the dialog code hook that is called by Amazon Lex at a step of the conversation. See code_hook
.
Link copied to clipboard
Configuration block for 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. See conditional
.
Link copied to clipboard
Configuration block for message groups that Amazon Lex uses to respond the user input. See initial_response
.
Link copied to clipboard
Configuration block for the next step in the conversation. See next_step
.