BotConditionalBranchArgs

data class BotConditionalBranchArgs(val condition: Output<BotConditionArgs>, val name: Output<String>, val nextStep: Output<BotDialogStateArgs>, val response: Output<BotResponseSpecificationArgs>? = null) : ConvertibleToJava<BotConditionalBranchArgs>

A set of actions that Amazon Lex should run if the condition is matched.

Constructors

Link copied to clipboard
constructor(condition: Output<BotConditionArgs>, name: Output<String>, nextStep: Output<BotDialogStateArgs>, response: Output<BotResponseSpecificationArgs>? = null)

Properties

Link copied to clipboard

Contains the expression to evaluate. If the condition is true, the branch's actions are taken.

Link copied to clipboard
val name: Output<String>

The name of the branch.

Link copied to clipboard

The next step in the conversation.

Link copied to clipboard

Specifies a list of message groups that Amazon Lex uses to respond the user input.

Functions

Link copied to clipboard
open override fun toJava(): BotConditionalBranchArgs