Module Values.DescribeUserResultSource

Returns information about a specific user.

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

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

    *)
  2. distinguishedName : DistinguishedName.t option;
    (*

    The distinguished name of the object.

    *)
  3. emailAddress : EmailAddress.t option;
    (*

    The email address of the user.

    *)
  4. enabled : Boolean.t option;
    (*

    Indicates whether the user account is active.

    *)
  5. givenName : GivenName.t option;
    (*

    The first name of the user.

    *)
  6. otherAttributes : Attributes.t option;
    (*

    The attribute values that are returned for the attribute names that are included in the request. Attribute names are case insensitive.

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

    The domain name that's associated with the user.

    *)
  8. sAMAccountName : UserName.t option;
    (*

    The name of the user.

    *)
  9. sID : SID.t option;
    (*

    The unique security identifier (SID) of the user.

    *)
  10. surname : Surname.t option;
    (*

    The last name of the user.

    *)
  11. userPrincipalName : UserPrincipalName.t option;
    (*

    The UPN that is an Internet-style login name for a user and is based on the Internet standard RFC 822. The UPN is shorter than the distinguished name and easier to remember.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `DirectoryUnavailableException of DirectoryUnavailableException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?directoryId:??? -> ?distinguishedName:??? -> ?emailAddress:??? -> ?enabled:??? -> ?givenName:??? -> ?otherAttributes:??? -> ?realm:??? -> ?sAMAccountName:??? -> ?sID:??? -> ?surname:??? -> ?userPrincipalName:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `DirectoryUnavailableException of DirectoryUnavailableException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `DirectoryUnavailableException of DirectoryUnavailableException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Map of ([> `String of LdapDisplayName.t ] * [> `Structure of (string * [> `Boolean of BooleanAttributeValue.t | `List of [> `String of StringAttributeValue.t ] list | `Long of NumberAttributeValue.t | `String of StringAttributeValue.t ]) list ]) 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