Class: Aws::Connect::Types::ParticipantTokenCredentials
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::ParticipantTokenCredentials
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
The credentials used by the participant.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #expiry  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The expiration of the token.
 - 
  
    
      #participant_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The token used by the chat participant to call [CreateParticipantConnection].
 
Instance Attribute Details
#expiry ⇒ String
The expiration of the token. It’s specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.
      17210 17211 17212 17213 17214 17215  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 17210 class ParticipantTokenCredentials < Struct.new( :participant_token, :expiry) 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
      17210 17211 17212 17213 17214 17215  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 17210 class ParticipantTokenCredentials < Struct.new( :participant_token, :expiry) SENSITIVE = [] include Aws::Structure end  |