Class: Aws::LexModelsV2::Types::ConditionalBranch
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::ConditionalBranch
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelsv2/types.rb
Overview
A set of actions that Amazon Lex should run if the condition is matched.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#condition ⇒ Types::Condition
Contains the expression to evaluate.
-
#name ⇒ String
The name of the branch.
-
#next_step ⇒ Types::DialogState
The next step in the conversation.
-
#response ⇒ Types::ResponseSpecification
Specifies a list of message groups that Amazon Lex uses to respond the user input.
Instance Attribute Details
#condition ⇒ Types::Condition
Contains the expression to evaluate. If the condition is true, the branch’s actions are taken.
3052 3053 3054 3055 3056 3057 3058 3059 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 3052 class ConditionalBranch < Struct.new( :name, :condition, :next_step, :response) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the branch.
3052 3053 3054 3055 3056 3057 3058 3059 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 3052 class ConditionalBranch < Struct.new( :name, :condition, :next_step, :response) SENSITIVE = [] include Aws::Structure end |
#next_step ⇒ Types::DialogState
The next step in the conversation.
3052 3053 3054 3055 3056 3057 3058 3059 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 3052 class ConditionalBranch < Struct.new( :name, :condition, :next_step, :response) SENSITIVE = [] include Aws::Structure end |
#response ⇒ Types::ResponseSpecification
Specifies a list of message groups that Amazon Lex uses to respond the user input.
3052 3053 3054 3055 3056 3057 3058 3059 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 3052 class ConditionalBranch < Struct.new( :name, :condition, :next_step, :response) SENSITIVE = [] include Aws::Structure end |