Class: Aws::Redshift::Types::AuthenticationProfile
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Redshift::Types::AuthenticationProfile
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-redshift/types.rb
 
Overview
Describes an authentication profile.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #authentication_profile_content  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The content of the authentication profile in JSON format.
 - 
  
    
      #authentication_profile_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the authentication profile.
 
Instance Attribute Details
#authentication_profile_content ⇒ String
The content of the authentication profile in JSON format. The maximum length of the JSON string is determined by a quota for your account.
      225 226 227 228 229 230  | 
    
      # File 'lib/aws-sdk-redshift/types.rb', line 225 class AuthenticationProfile < Struct.new( :authentication_profile_name, :authentication_profile_content) SENSITIVE = [] include Aws::Structure end  | 
  
#authentication_profile_name ⇒ String
The name of the authentication profile.
      225 226 227 228 229 230  | 
    
      # File 'lib/aws-sdk-redshift/types.rb', line 225 class AuthenticationProfile < Struct.new( :authentication_profile_name, :authentication_profile_content) SENSITIVE = [] include Aws::Structure end  |