Module Values.AwsMskClusterClusterInfoClientAuthenticationDetailsSource

Provides details about different modes of client authentication.

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

    Provides details for client authentication using SASL.

    *)
  2. unauthenticated : AwsMskClusterClusterInfoClientAuthenticationUnauthenticatedDetails.t option;
    (*

    Provides details for allowing no client authentication.

    *)
  3. tls : AwsMskClusterClusterInfoClientAuthenticationTlsDetails.t option;
    (*

    Provides details for client authentication using TLS.

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