Class: Aws::QuickSight::Types::APIKeyConnectionMetadata
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::QuickSight::Types::APIKeyConnectionMetadata
 
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
Configuration for API key-based authentication to external services.
Constant Summary collapse
- SENSITIVE =
- [:api_key, :email] 
Instance Attribute Summary collapse
- 
  
    
      #api_key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The API key used for authentication. 
- 
  
    
      #base_endpoint  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The base URL endpoint for the external service. 
- 
  
    
      #email  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The email address associated with the API key, if required. 
Instance Attribute Details
#api_key ⇒ String
The API key used for authentication.
| 29 30 31 32 33 34 35 | # File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 29 class APIKeyConnectionMetadata < Struct.new( :base_endpoint, :api_key, :email) SENSITIVE = [:api_key, :email] include Aws::Structure end | 
#base_endpoint ⇒ String
The base URL endpoint for the external service.
| 29 30 31 32 33 34 35 | # File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 29 class APIKeyConnectionMetadata < Struct.new( :base_endpoint, :api_key, :email) SENSITIVE = [:api_key, :email] include Aws::Structure end | 
#email ⇒ String
The email address associated with the API key, if required.
| 29 30 31 32 33 34 35 | # File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 29 class APIKeyConnectionMetadata < Struct.new( :base_endpoint, :api_key, :email) SENSITIVE = [:api_key, :email] include Aws::Structure end |