Values.DescribeUserRequestSourceReturns information about a specific user.
type nonrec t = {directoryId : DirectoryId.t;The identifier (ID) of the directory that's associated with the user.
*)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.
*)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.
*)sAMAccountName : UserName.t;The name of the user.
*)}val make :
?otherAttributes:??? ->
?realm:??? ->
directoryId:DirectoryId.t ->
sAMAccountName:UserName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of LdapDisplayName.t ] list
| `String of DirectoryId.t ])
list ]