Class: Aws::EC2::Types::ClientVpnAuthenticationRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::ClientVpnAuthenticationRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Describes the authentication method to be used by a Client VPN endpoint. For more information, see [Authentication] in the *Client VPN Administrator Guide*.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #active_directory  ⇒ Types::DirectoryServiceAuthenticationRequest 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Information about the Active Directory to be used, if applicable.
 - 
  
    
      #federated_authentication  ⇒ Types::FederatedAuthenticationRequest 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Information about the IAM SAML identity provider to be used, if applicable.
 - 
  
    
      #mutual_authentication  ⇒ Types::CertificateAuthenticationRequest 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Information about the authentication certificates to be used, if applicable.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of client authentication to be used.
 
Instance Attribute Details
#active_directory ⇒ Types::DirectoryServiceAuthenticationRequest
Information about the Active Directory to be used, if applicable. You must provide this information if Type is ‘directory-service-authentication`.
      6118 6119 6120 6121 6122 6123 6124 6125  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 6118 class ClientVpnAuthenticationRequest < Struct.new( :type, :active_directory, :mutual_authentication, :federated_authentication) SENSITIVE = [] include Aws::Structure end  | 
  
#federated_authentication ⇒ Types::FederatedAuthenticationRequest
Information about the IAM SAML identity provider to be used, if applicable. You must provide this information if Type is ‘federated-authentication`.
      6118 6119 6120 6121 6122 6123 6124 6125  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 6118 class ClientVpnAuthenticationRequest < Struct.new( :type, :active_directory, :mutual_authentication, :federated_authentication) SENSITIVE = [] include Aws::Structure end  | 
  
#mutual_authentication ⇒ Types::CertificateAuthenticationRequest
Information about the authentication certificates to be used, if applicable. You must provide this information if Type is ‘certificate-authentication`.
      6118 6119 6120 6121 6122 6123 6124 6125  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 6118 class ClientVpnAuthenticationRequest < Struct.new( :type, :active_directory, :mutual_authentication, :federated_authentication) SENSITIVE = [] include Aws::Structure end  | 
  
#type ⇒ String
The type of client authentication to be used.
      6118 6119 6120 6121 6122 6123 6124 6125  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 6118 class ClientVpnAuthenticationRequest < Struct.new( :type, :active_directory, :mutual_authentication, :federated_authentication) SENSITIVE = [] include Aws::Structure end  |