Class: Aws::DataZone::Types::UsernamePassword

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-datazone/types.rb

Overview

The username and password of a connection.

Constant Summary collapse

SENSITIVE =
[:password]

Instance Attribute Summary collapse

Instance Attribute Details

#passwordString

The password of a connection.

Returns:

  • (String)


21488
21489
21490
21491
21492
21493
# File 'lib/aws-sdk-datazone/types.rb', line 21488

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

#usernameString

The username of a connection.

Returns:

  • (String)


21488
21489
21490
21491
21492
21493
# File 'lib/aws-sdk-datazone/types.rb', line 21488

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