Class: Aws::Appflow::Types::BasicAuthCredentials
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Appflow::Types::BasicAuthCredentials
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appflow/types.rb
Overview
The basic auth credentials required for basic authentication.
Constant Summary collapse
- SENSITIVE =
- [:password] 
Instance Attribute Summary collapse
- 
  
    
      #password  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The password to use to connect to a resource. 
- 
  
    
      #username  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The username to use to connect to a resource. 
Instance Attribute Details
#password ⇒ String
The password to use to connect to a resource.
| 217 218 219 220 221 222 | # File 'lib/aws-sdk-appflow/types.rb', line 217 class BasicAuthCredentials < Struct.new( :username, :password) SENSITIVE = [:password] include Aws::Structure end | 
#username ⇒ String
The username to use to connect to a resource.
| 217 218 219 220 221 222 | # File 'lib/aws-sdk-appflow/types.rb', line 217 class BasicAuthCredentials < Struct.new( :username, :password) SENSITIVE = [:password] include Aws::Structure end |