Module Values.SaslSource

Details for client authentication using SASL.

Sourcetype nonrec t = {
  1. scram : Scram.t option;
    (*

    Details for SASL/SCRAM client authentication.

    *)
  2. iam : Iam.t option;
    (*

    Indicates whether IAM access control is enabled.

    *)
}
Sourceval make : ?scram:??? -> ?iam:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of bool ]) 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