Class: Aws::EMR::Types::UsernamePassword

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

Overview

The username and password that you use to connect to cluster endpoints.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#passwordString

The password associated with the temporary credentials that you use to connect to cluster endpoints.

Returns:

  • (String)


6997
6998
6999
7000
7001
7002
# File 'lib/aws-sdk-emr/types.rb', line 6997

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

#usernameString

The username associated with the temporary credentials that you use to connect to cluster endpoints.

Returns:

  • (String)


6997
6998
6999
7000
7001
7002
# File 'lib/aws-sdk-emr/types.rb', line 6997

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