Class: Aws::Glue::Types::BasicAuthenticationProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::BasicAuthenticationProperties
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Basic authentication configuration that defines the username and password properties for HTTP Basic authentication.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#password ⇒ Types::ConnectorProperty
The password property name to use for Basic authentication credentials.
-
#username ⇒ Types::ConnectorProperty
The username property name to use for Basic authentication credentials.
Instance Attribute Details
#password ⇒ Types::ConnectorProperty
The password property name to use for Basic authentication credentials.
766 767 768 769 770 771 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 766 class BasicAuthenticationProperties < Struct.new( :username, :password) SENSITIVE = [] include Aws::Structure end |
#username ⇒ Types::ConnectorProperty
The username property name to use for Basic authentication credentials.
766 767 768 769 770 771 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 766 class BasicAuthenticationProperties < Struct.new( :username, :password) SENSITIVE = [] include Aws::Structure end |