Class: Aws::ChimeSDKVoice::Types::Credential
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ChimeSDKVoice::Types::Credential
 
 
- Defined in:
 - gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb
 
Overview
The SIP credentials used to authenticate requests to an Amazon Chime SDK Voice Connector.
Constant Summary collapse
- SENSITIVE =
 [:username, :password]
Instance Attribute Summary collapse
- 
  
    
      #password  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The RFC2617 compliant password associated with the SIP credentials, in US-ASCII format.
 - 
  
    
      #username  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The RFC2617 compliant user name associated with the SIP credentials, in US-ASCII format.
 
Instance Attribute Details
#password ⇒ String
The RFC2617 compliant password associated with the SIP credentials, in US-ASCII format.
      715 716 717 718 719 720  | 
    
      # File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 715 class Credential < Struct.new( :username, :password) SENSITIVE = [:username, :password] include Aws::Structure end  | 
  
#username ⇒ String
The RFC2617 compliant user name associated with the SIP credentials, in US-ASCII format.
      715 716 717 718 719 720  | 
    
      # File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 715 class Credential < Struct.new( :username, :password) SENSITIVE = [:username, :password] include Aws::Structure end  |