Class: Aws::LexModelsV2::Types::Message
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::Message
- Defined in:
- gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb
Overview
The object that provides message text and its type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#custom_payload ⇒ Types::CustomPayload
A message in a custom format defined by the client application.
-
#image_response_card ⇒ Types::ImageResponseCard
A message that defines a response card that the client application can show to the user.
-
#plain_text_message ⇒ Types::PlainTextMessage
A message in plain text format.
-
#ssml_message ⇒ Types::SSMLMessage
A message in Speech Synthesis Markup Language (SSML).
Instance Attribute Details
#custom_payload ⇒ Types::CustomPayload
A message in a custom format defined by the client application.
11067 11068 11069 11070 11071 11072 11073 11074 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 11067 class Message < Struct.new( :plain_text_message, :custom_payload, :ssml_message, :image_response_card) SENSITIVE = [] include Aws::Structure end |
#image_response_card ⇒ Types::ImageResponseCard
A message that defines a response card that the client application can show to the user.
11067 11068 11069 11070 11071 11072 11073 11074 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 11067 class Message < Struct.new( :plain_text_message, :custom_payload, :ssml_message, :image_response_card) SENSITIVE = [] include Aws::Structure end |
#plain_text_message ⇒ Types::PlainTextMessage
A message in plain text format.
11067 11068 11069 11070 11071 11072 11073 11074 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 11067 class Message < Struct.new( :plain_text_message, :custom_payload, :ssml_message, :image_response_card) SENSITIVE = [] include Aws::Structure end |
#ssml_message ⇒ Types::SSMLMessage
A message in Speech Synthesis Markup Language (SSML).
11067 11068 11069 11070 11071 11072 11073 11074 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 11067 class Message < Struct.new( :plain_text_message, :custom_payload, :ssml_message, :image_response_card) SENSITIVE = [] include Aws::Structure end |