Class: Aws::DataZone::Types::BasicAuthenticationCredentials

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

Overview

The basic authentication credentials of a connection.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#passwordString

The password for a connection.

Returns:

  • (String)


1554
1555
1556
1557
1558
1559
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 1554

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

#user_nameString

The user name for the connecion.

Returns:

  • (String)


1554
1555
1556
1557
1558
1559
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 1554

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