Class: Aws::EventBridge::Types::CreateConnectionBasicAuthRequestParameters
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EventBridge::Types::CreateConnectionBasicAuthRequestParameters
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-eventbridge/types.rb
 
Overview
Contains the Basic authorization parameters to use for the connection.
Constant Summary collapse
- SENSITIVE =
 [:password]
Instance Attribute Summary collapse
- 
  
    
      #password  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The password associated with the user name to use for Basic authorization.
 - 
  
    
      #username  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The user name to use for Basic authorization.
 
Instance Attribute Details
#password ⇒ String
The password associated with the user name to use for Basic authorization.
      835 836 837 838 839 840  | 
    
      # File 'lib/aws-sdk-eventbridge/types.rb', line 835 class CreateConnectionBasicAuthRequestParameters < Struct.new( :username, :password) SENSITIVE = [:password] include Aws::Structure end  | 
  
#username ⇒ String
The user name to use for Basic authorization.
      835 836 837 838 839 840  | 
    
      # File 'lib/aws-sdk-eventbridge/types.rb', line 835 class CreateConnectionBasicAuthRequestParameters < Struct.new( :username, :password) SENSITIVE = [:password] include Aws::Structure end  |