Module Values_3.ClientVpnAuthenticationRequestSource

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

Sourcetype nonrec t = {
  1. type_ : Values_0.ClientVpnAuthenticationType.t option;
    (*

    The type of client authentication to be used.

    *)
  2. activeDirectory : Values_1.DirectoryServiceAuthenticationRequest.t option;
    (*

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

    *)
  3. mutualAuthentication : Values_1.CertificateAuthenticationRequest.t option;
    (*

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

    *)
  4. federatedAuthentication : Values_1.FederatedAuthenticationRequest.t option;
    (*

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

    *)
}
Sourceval make : ?type_:??? -> ?activeDirectory:??? -> ?mutualAuthentication:??? -> ?federatedAuthentication:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of Values_0.String_.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t