Class: Aws::Connect::Types::ChatMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::ChatMessage
- Includes:
- Structure
- Defined in:
- 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*.
[1]: docs.aws.amazon.com/connect/latest/adminguide/feature-limits.html#chat-message-size-limits
3211 3212 3213 3214 3215 3216 |
# File '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 'lib/aws-sdk-connect/types.rb', line 3211 class ChatMessage < Struct.new( :content_type, :content) SENSITIVE = [] include Aws::Structure end |