Module Values.ImpersonatedUserSource

Contains information about the impersonated user.

Sourcetype nonrec t = {
  1. username : String_.t option;
    (*

    Information about the username that was being impersonated.

    *)
  2. groups : Groups.t option;
    (*

    The group to which the user name belongs.

    *)
}
Sourceval make : ?username:??? -> ?groups:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.t ]) 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