Class: Aws::EMR::Types::UsernamePassword
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::UsernamePassword
- 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
-
#password ⇒ String
The password associated with the temporary credentials that you use to connect to cluster endpoints.
-
#username ⇒ String
The username associated with the temporary credentials that you use to connect to cluster endpoints.
Instance Attribute Details
#password ⇒ String
The password associated with the temporary credentials that you use to connect to cluster endpoints.
7045 7046 7047 7048 7049 7050 |
# File 'lib/aws-sdk-emr/types.rb', line 7045 class UsernamePassword < Struct.new( :username, :password) SENSITIVE = [] include Aws::Structure end |
#username ⇒ String
The username associated with the temporary credentials that you use to connect to cluster endpoints.
7045 7046 7047 7048 7049 7050 |
# File 'lib/aws-sdk-emr/types.rb', line 7045 class UsernamePassword < Struct.new( :username, :password) SENSITIVE = [] include Aws::Structure end |