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.
- 
For ‘text/plain` and `text/markdown`, the Length Constraints are Minimum of 1, Maximum of 1024.
 - 
For ‘application/json`, the Length Constraints are Minimum of 1, Maximum of 12000.
 - 
For ‘application/vnd.amazonaws.connect.message.interactive.response`, the Length Constraints are Minimum of 1, Maximum of 12288.
 
      2044 2045 2046 2047 2048 2049  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 2044 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`.
      2044 2045 2046 2047 2048 2049  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 2044 class ChatMessage < Struct.new( :content_type, :content) SENSITIVE = [] include Aws::Structure end  |