Values.SearchUsersRequestSourceSearches the specified directory for a user. You can find users that match the SearchString parameter with the value of their attributes included in the SearchString parameter. This operation supports pagination with the use of the NextToken request and response parameters. If more results are available, the SearchUsers.NextToken member contains a token that you pass in the next call to SearchUsers. This retrieves the next set of items. You can also specify a maximum number of return results with the MaxResults parameter.
type nonrec t = {directoryId : DirectoryId.t;The identifier (ID) of the directory that's associated with the user.
*)maxResults : MaxResults.t option;The maximum number of results to be returned per request.
*)nextToken : NextToken.t option;An encoded paging token for paginated calls that can be passed back to retrieve the next page.
*)realm : Realm.t option;The domain name that's associated with the user. This parameter is optional, so you can return users outside of your Managed Microsoft AD domain. When no value is defined, only your Managed Microsoft AD users are returned. This value is case insensitive.
*)searchAttributes : LdapDisplayNameList.t;One or more data attributes that are used to search for a user. For a list of supported attributes, see Directory Service Data Attributes.
*)searchString : SearchString.t;The attribute value that you want to search for. Wildcard (*) searches aren't supported. For a list of supported attributes, see Directory Service Data Attributes.
*)}val make :
?maxResults:??? ->
?nextToken:??? ->
?realm:??? ->
directoryId:DirectoryId.t ->
searchAttributes:LdapDisplayNameList.t ->
searchString:SearchString.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of MaxResults.t
| `List of [> `String of LdapDisplayName.t ] list
| `String of DirectoryId.t ])
list ]