Values.SearchGroupProfilesInputSourceSearches group profiles in Amazon DataZone.
type nonrec t = {domainIdentifier : DomainId.t;The identifier of the Amazon DataZone domain in which you want to search group profiles.
*)groupType : GroupSearchType.t;The group type for which to search.
*)searchText : GroupSearchText.t option;Specifies the text for which to search.
*)maxResults : MaxResults.t option;The maximum number of results to return in a single call to SearchGroupProfiles. When the number of results to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to SearchGroupProfiles to list the next set of results.
*)nextToken : PaginationToken.t option;When the number of results is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of results, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to SearchGroupProfiles to list the next set of results.
*)}val make :
?searchText:??? ->
?maxResults:??? ->
?nextToken:??? ->
domainIdentifier:DomainId.t ->
groupType:GroupSearchType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of MaxResults.t
| `String of DomainId.t ])
list ]