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)


1244
1245
1246
1247
1248
1249
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 1244

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

#user_nameString

The user name for the connecion.

Returns:

  • (String)


1244
1245
1246
1247
1248
1249
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 1244

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