Class: Aws::LexModelsV2::Types::WaitAndContinueSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::WaitAndContinueSpecification
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelsv2/types.rb
Overview
Specifies the prompts that Amazon Lex uses while a bot is waiting for customer input.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#active ⇒ Boolean
Specifies whether the bot will wait for a user to respond.
-
#continue_response ⇒ Types::ResponseSpecification
The response that Amazon Lex sends to indicate that the bot is ready to continue the conversation.
-
#still_waiting_response ⇒ Types::StillWaitingResponseSpecification
A response that Amazon Lex sends periodically to the user to indicate that the bot is still waiting for input from the user.
-
#waiting_response ⇒ Types::ResponseSpecification
The response that Amazon Lex sends to indicate that the bot is waiting for the conversation to continue.
Instance Attribute Details
#active ⇒ Boolean
Specifies whether the bot will wait for a user to respond. When this field is false, wait and continue responses for a slot aren’t used. If the ‘active` field isn’t specified, the default is true.
16001 16002 16003 16004 16005 16006 16007 16008 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 16001 class WaitAndContinueSpecification < Struct.new( :waiting_response, :continue_response, :still_waiting_response, :active) SENSITIVE = [] include Aws::Structure end |
#continue_response ⇒ Types::ResponseSpecification
The response that Amazon Lex sends to indicate that the bot is ready to continue the conversation.
16001 16002 16003 16004 16005 16006 16007 16008 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 16001 class WaitAndContinueSpecification < Struct.new( :waiting_response, :continue_response, :still_waiting_response, :active) SENSITIVE = [] include Aws::Structure end |
#still_waiting_response ⇒ Types::StillWaitingResponseSpecification
A response that Amazon Lex sends periodically to the user to indicate that the bot is still waiting for input from the user.
16001 16002 16003 16004 16005 16006 16007 16008 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 16001 class WaitAndContinueSpecification < Struct.new( :waiting_response, :continue_response, :still_waiting_response, :active) SENSITIVE = [] include Aws::Structure end |
#waiting_response ⇒ Types::ResponseSpecification
The response that Amazon Lex sends to indicate that the bot is waiting for the conversation to continue.
16001 16002 16003 16004 16005 16006 16007 16008 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 16001 class WaitAndContinueSpecification < Struct.new( :waiting_response, :continue_response, :still_waiting_response, :active) SENSITIVE = [] include Aws::Structure end |