Class: Aws::EC2::Types::ClientVpnAuthentication
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::ClientVpnAuthentication
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Describes the authentication methods used by a Client VPN endpoint. For more information, see [Authentication] in the *Client VPN Administrator Guide*.
[1]: docs.aws.amazon.com/vpn/latest/clientvpn-admin/client-authentication.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #active_directory  ⇒ Types::DirectoryServiceAuthentication 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Information about the Active Directory, if applicable.
 - 
  
    
      #federated_authentication  ⇒ Types::FederatedAuthentication 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Information about the IAM SAML identity provider, if applicable.
 - 
  
    
      #mutual_authentication  ⇒ Types::CertificateAuthentication 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Information about the authentication certificates, if applicable.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The authentication type used.
 
Instance Attribute Details
#active_directory ⇒ Types::DirectoryServiceAuthentication
Information about the Active Directory, if applicable.
      6077 6078 6079 6080 6081 6082 6083 6084  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 6077 class ClientVpnAuthentication < Struct.new( :type, :active_directory, :mutual_authentication, :federated_authentication) SENSITIVE = [] include Aws::Structure end  | 
  
#federated_authentication ⇒ Types::FederatedAuthentication
Information about the IAM SAML identity provider, if applicable.
      6077 6078 6079 6080 6081 6082 6083 6084  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 6077 class ClientVpnAuthentication < Struct.new( :type, :active_directory, :mutual_authentication, :federated_authentication) SENSITIVE = [] include Aws::Structure end  | 
  
#mutual_authentication ⇒ Types::CertificateAuthentication
Information about the authentication certificates, if applicable.
      6077 6078 6079 6080 6081 6082 6083 6084  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 6077 class ClientVpnAuthentication < Struct.new( :type, :active_directory, :mutual_authentication, :federated_authentication) SENSITIVE = [] include Aws::Structure end  | 
  
#type ⇒ String
The authentication type used.
      6077 6078 6079 6080 6081 6082 6083 6084  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 6077 class ClientVpnAuthentication < Struct.new( :type, :active_directory, :mutual_authentication, :federated_authentication) SENSITIVE = [] include Aws::Structure end  |