Module Values_1.ClientVpnAuthenticationSource

Describes the authentication methods 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 authentication type used.

    *)
  2. activeDirectory : Values_0.DirectoryServiceAuthentication.t option;
    (*

    Information about the Active Directory, if applicable.

    *)
  3. mutualAuthentication : Values_0.CertificateAuthentication.t option;
    (*

    Information about the authentication certificates, if applicable.

    *)
  4. federatedAuthentication : Values_0.FederatedAuthentication.t option;
    (*

    Information about the IAM SAML identity provider, if applicable.

    *)
}
Sourceval make : ?type_:??? -> ?activeDirectory:??? -> ?mutualAuthentication:??? -> ?federatedAuthentication:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of string ]) 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