Class: Aws::LexModelsV2::Types::WaitAndContinueSpecification

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#activeBoolean

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.

Returns:

  • (Boolean)


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_responseTypes::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_responseTypes::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_responseTypes::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