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
Note:
When making an API call, you may pass ChatMessage data as a hash:
{
content_type: "ChatContentType", # required
content: "ChatContent", # required
}
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.
618 619 620 621 622 623 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 618 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
.
618 619 620 621 622 623 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 618 class ChatMessage < Struct.new( :content_type, :content) SENSITIVE = [] include Aws::Structure end |