Class: Aws::DataZone::Types::UsernamePassword
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::UsernamePassword
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-datazone/types.rb
Overview
The username and password of a connection.
Constant Summary collapse
- SENSITIVE =
[:password]
Instance Attribute Summary collapse
-
#password ⇒ String
The password of a connection.
-
#username ⇒ String
The username of a connection.
Instance Attribute Details
#password ⇒ String
The password of a connection.
21488 21489 21490 21491 21492 21493 |
# File 'lib/aws-sdk-datazone/types.rb', line 21488 class UsernamePassword < Struct.new( :password, :username) SENSITIVE = [:password] include Aws::Structure end |
#username ⇒ String
The username of a connection.
21488 21489 21490 21491 21492 21493 |
# File 'lib/aws-sdk-datazone/types.rb', line 21488 class UsernamePassword < Struct.new( :password, :username) SENSITIVE = [:password] include Aws::Structure end |