Class: Aws::Connect::Types::ChatMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::ChatMessage
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
A chat message.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#content ⇒ String
The content of the chat message.
-
#content_type ⇒ String
The type of the content.
Instance Attribute Details
#content ⇒ String
The content of the chat message. Maximum of 16,384 bytes for all
content types (text/plain, text/markdown, application/json,
and
application/vnd.amazonaws.connect.message.interactive.response).
Some messaging channels enforce lower limits. For channel-specific message size limits, see Chat message size limits by channel in the Amazon Connect Customer Administrator Guide.
3211 3212 3213 3214 3215 3216 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 3211 class ChatMessage < Struct.new( :content_type, :content) SENSITIVE = [] include Aws::Structure end |
#content_type ⇒ String
The type of the content. Supported types are text/plain,
text/markdown, application/json, and
application/vnd.amazonaws.connect.message.interactive.response.
3211 3212 3213 3214 3215 3216 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 3211 class ChatMessage < Struct.new( :content_type, :content) SENSITIVE = [] include Aws::Structure end |