Class: Aws::LexModelsV2::Types::InitialResponseSetting
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::InitialResponseSetting
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelsv2/types.rb
Overview
Configuration setting for a response sent to the user before Amazon Lex starts eliciting slots.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code_hook ⇒ Types::DialogCodeHookInvocationSetting
Settings that specify the dialog code hook that is called by Amazon Lex at a step of the conversation.
-
#conditional ⇒ Types::ConditionalSpecification
Provides a list of conditional branches.
-
#initial_response ⇒ Types::ResponseSpecification
Specifies a list of message groups that Amazon Lex uses to respond the user input.
-
#next_step ⇒ Types::DialogState
The next step in the conversation.
Instance Attribute Details
#code_hook ⇒ Types::DialogCodeHookInvocationSetting
Settings that specify the dialog code hook that is called by Amazon Lex at a step of the conversation.
8081 8082 8083 8084 8085 8086 8087 8088 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 8081 class InitialResponseSetting < Struct.new( :initial_response, :next_step, :conditional, :code_hook) SENSITIVE = [] include Aws::Structure end |
#conditional ⇒ Types::ConditionalSpecification
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.
8081 8082 8083 8084 8085 8086 8087 8088 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 8081 class InitialResponseSetting < Struct.new( :initial_response, :next_step, :conditional, :code_hook) SENSITIVE = [] include Aws::Structure end |
#initial_response ⇒ Types::ResponseSpecification
Specifies a list of message groups that Amazon Lex uses to respond the user input.
8081 8082 8083 8084 8085 8086 8087 8088 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 8081 class InitialResponseSetting < Struct.new( :initial_response, :next_step, :conditional, :code_hook) SENSITIVE = [] include Aws::Structure end |
#next_step ⇒ Types::DialogState
The next step in the conversation.
8081 8082 8083 8084 8085 8086 8087 8088 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 8081 class InitialResponseSetting < Struct.new( :initial_response, :next_step, :conditional, :code_hook) SENSITIVE = [] include Aws::Structure end |