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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-datazone/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)


22552
22553
22554
22555
22556
22557
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 22552

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

#usernameString

The username of a connection.

Returns:

  • (String)


22552
22553
22554
22555
22556
22557
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 22552

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