Class: Aws::Glue::Types::BasicAuthenticationCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::BasicAuthenticationCredentials
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
For supplying basic auth credentials when not providing a ‘SecretArn` value.
Constant Summary collapse
- SENSITIVE =
[:password]
Instance Attribute Summary collapse
-
#password ⇒ String
The password to connect to the data source.
-
#username ⇒ String
The username to connect to the data source.
Instance Attribute Details
#password ⇒ String
The password to connect to the data source.
698 699 700 701 702 703 |
# File 'lib/aws-sdk-glue/types.rb', line 698 class BasicAuthenticationCredentials < Struct.new( :username, :password) SENSITIVE = [:password] include Aws::Structure end |
#username ⇒ String
The username to connect to the data source.
698 699 700 701 702 703 |
# File 'lib/aws-sdk-glue/types.rb', line 698 class BasicAuthenticationCredentials < Struct.new( :username, :password) SENSITIVE = [:password] include Aws::Structure end |