Module Values.SearchGroupsRequestSource

Searches the specified directory for a group. You can find groups 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 SearchGroups.NextToken member contains a token that you pass in the next call to SearchGroups. This retrieves the next set of items. You can also specify a maximum number of return results with the MaxResults parameter.

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

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

    *)
  2. maxResults : MaxResults.t option;
    (*

    The maximum number of results to be returned per request.

    *)
  3. nextToken : NextToken.t option;
    (*

    An encoded paging token for paginated calls that can be passed back to retrieve the next page.

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

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

    *)
  5. searchAttributes : LdapDisplayNameList.t;
    (*

    One or more data attributes that are used to search for a group. For a list of supported attributes, see Directory Service Data Attributes.

    *)
  6. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxResults:??? -> ?nextToken:??? -> ?realm:??? -> directoryId:DirectoryId.t -> searchAttributes:LdapDisplayNameList.t -> searchString:SearchString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `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