Module Values.AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsSource

Information about the authentication method used by the Client VPN endpoint.

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

    The authentication type used.

    *)
  2. activeDirectory : AwsEc2ClientVpnEndpointAuthenticationOptionsActiveDirectoryDetails.t option;
    (*

    Information about the Active Directory, if applicable. With Active Directory authentication, clients are authenticated against existing Active Directory groups.

    *)
  3. mutualAuthentication : AwsEc2ClientVpnEndpointAuthenticationOptionsMutualAuthenticationDetails.t option;
    (*

    Information about the authentication certificates, if applicable.

    *)
  4. federatedAuthentication : AwsEc2ClientVpnEndpointAuthenticationOptionsFederatedAuthenticationDetails.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 * [> `String of NonEmptyString.t | `Structure of (string * [> `String of NonEmptyString.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