Class: Aws::EC2::Types::ClientVpnAuthentication

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Describes the authentication methods used by a Client VPN endpoint. Client VPN supports Active Directory and mutual authentication. For more information, see [Authentication] in the *AWS Client VPN Administrator Guide*.

[1]: docs.aws.amazon.com/vpn/latest/clientvpn-admin/authentication-authrization.html#client-authentication

Instance Attribute Summary collapse

Instance Attribute Details

#active_directoryTypes::DirectoryServiceAuthentication

Information about the Active Directory, if applicable.



2951
2952
2953
2954
2955
2956
# File 'lib/aws-sdk-ec2/types.rb', line 2951

class ClientVpnAuthentication < Struct.new(
  :type,
  :active_directory,
  :mutual_authentication)
  include Aws::Structure
end

#mutual_authenticationTypes::CertificateAuthentication

Information about the authentication certificates, if applicable.



2951
2952
2953
2954
2955
2956
# File 'lib/aws-sdk-ec2/types.rb', line 2951

class ClientVpnAuthentication < Struct.new(
  :type,
  :active_directory,
  :mutual_authentication)
  include Aws::Structure
end

#typeString

The authentication type used.

Returns:

  • (String)


2951
2952
2953
2954
2955
2956
# File 'lib/aws-sdk-ec2/types.rb', line 2951

class ClientVpnAuthentication < Struct.new(
  :type,
  :active_directory,
  :mutual_authentication)
  include Aws::Structure
end