Class: Aws::Connect::Types::StartChatContactResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::StartChatContactResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #contact_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier of this contact within the Amazon Connect instance.
 - 
  
    
      #continued_from_contact_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The contactId from which a persistent chat session is started.
 - 
  
    
      #participant_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier for a chat participant.
 - 
  
    
      #participant_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The token used by the chat participant to call [CreateParticipantConnection].
 
Instance Attribute Details
#contact_id ⇒ String
The identifier of this contact within the Amazon Connect instance.
      21961 21962 21963 21964 21965 21966 21967 21968  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 21961 class StartChatContactResponse < Struct.new( :contact_id, :participant_id, :participant_token, :continued_from_contact_id) SENSITIVE = [] include Aws::Structure end  | 
  
#continued_from_contact_id ⇒ String
The contactId from which a persistent chat session is started. This field is populated only for persistent chats.
      21961 21962 21963 21964 21965 21966 21967 21968  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 21961 class StartChatContactResponse < Struct.new( :contact_id, :participant_id, :participant_token, :continued_from_contact_id) SENSITIVE = [] include Aws::Structure end  | 
  
#participant_id ⇒ String
The identifier for a chat participant. The participantId for a chat participant is the same throughout the chat lifecycle.
      21961 21962 21963 21964 21965 21966 21967 21968  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 21961 class StartChatContactResponse < Struct.new( :contact_id, :participant_id, :participant_token, :continued_from_contact_id) SENSITIVE = [] include Aws::Structure end  | 
  
#participant_token ⇒ String
The token used by the chat participant to call [CreateParticipantConnection]. The participant token is valid for the lifetime of a chat participant.
[1]: docs.aws.amazon.com/connect-participant/latest/APIReference/API_CreateParticipantConnection.html
      21961 21962 21963 21964 21965 21966 21967 21968  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 21961 class StartChatContactResponse < Struct.new( :contact_id, :participant_id, :participant_token, :continued_from_contact_id) SENSITIVE = [] include Aws::Structure end  |