Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ClientVpnAuthenticationRequest

import type { ClientVpnAuthenticationRequest } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";

Describes the authentication method to be used by a Client VPN endpoint. For more information, see Authentication in the Client VPN Administrator Guide.

interface ClientVpnAuthenticationRequest {
ActiveDirectory?: DirectoryServiceAuthenticationRequest | null;
FederatedAuthentication?: FederatedAuthenticationRequest | null;
MutualAuthentication?: CertificateAuthenticationRequest | null;
}

§Properties

§

Information about the Active Directory to be used, if applicable. You must provide this information if Type is directory-service-authentication.

§
FederatedAuthentication?: FederatedAuthenticationRequest | null
[src]

Information about the IAM SAML identity provider to be used, if applicable. You must provide this information if Type is federated-authentication.

§
MutualAuthentication?: CertificateAuthenticationRequest | null
[src]

Information about the authentication certificates to be used, if applicable. You must provide this information if Type is certificate-authentication.

§

The type of client authentication to be used.