Class: Aws::DataSync::Types::Credentials
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::DataSync::Types::Credentials
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-datasync/types.rb
 
Overview
The credentials that provide DataSync Discovery read access to your on-premises storage system’s management interface.
DataSync Discovery stores these credentials in [Secrets Manager]. For more information, see [Accessing your on-premises storage system].
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html [2]: docs.aws.amazon.com/datasync/latest/userguide/discovery-configure-storage.html
Constant Summary collapse
- SENSITIVE =
 [:username, :password]
Instance Attribute Summary collapse
- 
  
    
      #password  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the password for your storage system’s management interface.
 - 
  
    
      #username  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the user name for your storage system’s management interface.
 
Instance Attribute Details
#password ⇒ String
Specifies the password for your storage system’s management interface.
      1468 1469 1470 1471 1472 1473  | 
    
      # File 'lib/aws-sdk-datasync/types.rb', line 1468 class Credentials < Struct.new( :username, :password) SENSITIVE = [:username, :password] include Aws::Structure end  | 
  
#username ⇒ String
Specifies the user name for your storage system’s management interface.
      1468 1469 1470 1471 1472 1473  | 
    
      # File 'lib/aws-sdk-datasync/types.rb', line 1468 class Credentials < Struct.new( :username, :password) SENSITIVE = [:username, :password] include Aws::Structure end  |