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.
| 712 713 714 715 716 717 | # File 'lib/aws-sdk-glue/types.rb', line 712 class BasicAuthenticationCredentials < Struct.new( :username, :password) SENSITIVE = [:password] include Aws::Structure end | 
#username ⇒ String
The username to connect to the data source.
| 712 713 714 715 716 717 | # File 'lib/aws-sdk-glue/types.rb', line 712 class BasicAuthenticationCredentials < Struct.new( :username, :password) SENSITIVE = [:password] include Aws::Structure end |