Class: Aws::ConnectParticipant::Types::ConnectionCredentials
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::ConnectParticipant::Types::ConnectionCredentials
 
- Defined in:
- gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb
Overview
Connection credentials.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #connection_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The connection token. 
- 
  
    
      #expiry  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The expiration of the token. 
Instance Attribute Details
#connection_token ⇒ String
The connection token.
| 185 186 187 188 189 190 | # File 'gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb', line 185 class ConnectionCredentials < Struct.new( :connection_token, :expiry) SENSITIVE = [] include Aws::Structure end | 
#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.
| 185 186 187 188 189 190 | # File 'gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb', line 185 class ConnectionCredentials < Struct.new( :connection_token, :expiry) SENSITIVE = [] include Aws::Structure end |