Class: Aws::DataSync::Types::Credentials

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#passwordString

Specifies the password for your storage system's management interface.

Returns:

  • (String)


1404
1405
1406
1407
1408
1409
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 1404

class Credentials < Struct.new(
  :username,
  :password)
  SENSITIVE = [:username, :password]
  include Aws::Structure
end

#usernameString

Specifies the user name for your storage system's management interface.

Returns:

  • (String)


1404
1405
1406
1407
1408
1409
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 1404

class Credentials < Struct.new(
  :username,
  :password)
  SENSITIVE = [:username, :password]
  include Aws::Structure
end