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.
6012 6013 6014 6015 6016 6017 6018 6019 |
# File 'lib/aws-sdk-ec2/types.rb', line 6012 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.
6012 6013 6014 6015 6016 6017 6018 6019 |
# File 'lib/aws-sdk-ec2/types.rb', line 6012 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.
6012 6013 6014 6015 6016 6017 6018 6019 |
# File 'lib/aws-sdk-ec2/types.rb', line 6012 class ClientVpnAuthentication < Struct.new( :type, :active_directory, :mutual_authentication, :federated_authentication) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The authentication type used.
6012 6013 6014 6015 6016 6017 6018 6019 |
# File 'lib/aws-sdk-ec2/types.rb', line 6012 class ClientVpnAuthentication < Struct.new( :type, :active_directory, :mutual_authentication, :federated_authentication) SENSITIVE = [] include Aws::Structure end |