Module Values.ClientAuthenticationSource

Includes all client authentication information.

Sourcetype nonrec t = {
  1. sasl : Sasl.t option;
    (*

    Details for ClientAuthentication using SASL.

    *)
  2. tls : Tls.t option;
    (*

    Details for ClientAuthentication using TLS.

    *)
  3. unauthenticated : Unauthenticated.t option;
    (*

    Contains information about unauthenticated traffic to the cluster.

    *)
}
Sourceval make : ?sasl:??? -> ?tls:??? -> ?unauthenticated:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of bool | `List of [> `String of string ] list | `Structure of (string * [> `Boolean of bool ]) list ]) 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