Class: Aws::QuickSight::Types::BasicAuthConnectionMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::BasicAuthConnectionMetadata
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-quicksight/types.rb
Overview
Metadata for basic authentication using username and password.
Constant Summary collapse
- SENSITIVE =
[:username, :password]
Instance Attribute Summary collapse
-
#base_endpoint ⇒ String
The base URL endpoint for the external service.
-
#password ⇒ String
The password for basic authentication.
-
#username ⇒ String
The username for basic authentication.
Instance Attribute Details
#base_endpoint ⇒ String
The base URL endpoint for the external service.
3785 3786 3787 3788 3789 3790 3791 |
# File 'lib/aws-sdk-quicksight/types.rb', line 3785 class BasicAuthConnectionMetadata < Struct.new( :base_endpoint, :username, :password) SENSITIVE = [:username, :password] include Aws::Structure end |
#password ⇒ String
The password for basic authentication.
3785 3786 3787 3788 3789 3790 3791 |
# File 'lib/aws-sdk-quicksight/types.rb', line 3785 class BasicAuthConnectionMetadata < Struct.new( :base_endpoint, :username, :password) SENSITIVE = [:username, :password] include Aws::Structure end |
#username ⇒ String
The username for basic authentication.
3785 3786 3787 3788 3789 3790 3791 |
# File 'lib/aws-sdk-quicksight/types.rb', line 3785 class BasicAuthConnectionMetadata < Struct.new( :base_endpoint, :username, :password) SENSITIVE = [:username, :password] include Aws::Structure end |