Class: Aws::DataSync::Types::Credentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataSync::Types::Credentials
- Defined in:
- gems/aws-sdk-datasync/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.
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 'gems/aws-sdk-datasync/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 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 1468 class Credentials < Struct.new( :username, :password) SENSITIVE = [:username, :password] include Aws::Structure end |