Module Values.DescribeUserRequestSource

Returns information about a specific user.

Sourcetype nonrec t = {
  1. directoryId : DirectoryId.t;
    (*

    The identifier (ID) of the directory that's associated with the user.

    *)
  2. otherAttributes : LdapDisplayNameList.t option;
    (*

    One or more attribute names to be returned for the user. A key is an attribute name, and the value is a list of maps. For a list of supported attributes, see Directory Service Data Attributes.

    *)
  3. realm : Realm.t option;
    (*

    The domain name that's associated with the user. This parameter is optional, so you can return users outside your Managed Microsoft AD domain. When no value is defined, only your Managed Microsoft AD users are returned. This value is case insensitive.

    *)
  4. sAMAccountName : UserName.t;
    (*

    The name of the user.

    *)
}
Sourceval context_ : string
Sourceval make : ?otherAttributes:??? -> ?realm:??? -> directoryId:DirectoryId.t -> sAMAccountName:UserName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of LdapDisplayName.t ] list | `String of DirectoryId.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