Class: Aws::LexModelBuildingService::Types::Statement
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::Statement
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
A collection of messages that convey information to the user. At runtime, Amazon Lex selects the message to convey.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#messages ⇒ Array<Types::Message>
A collection of message objects.
-
#response_card ⇒ String
At runtime, if the client is using the [PostText] API, Amazon Lex includes the response card in the response.
Instance Attribute Details
#messages ⇒ Array<Types::Message>
A collection of message objects.
4416 4417 4418 4419 4420 4421 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 4416 class Statement < Struct.new( :messages, :response_card) SENSITIVE = [] include Aws::Structure end |
#response_card ⇒ String
At runtime, if the client is using the [PostText] API, Amazon Lex includes the response card in the response. It substitutes all of the session attributes and slot values for placeholders in the response card.
[1]: docs.aws.amazon.com/lex/latest/dg/API_runtime_PostText.html
4416 4417 4418 4419 4420 4421 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 4416 class Statement < Struct.new( :messages, :response_card) SENSITIVE = [] include Aws::Structure end |