Module Values.SearchGroupProfilesInputSource

Searches group profiles in Amazon DataZone.

Sourcetype nonrec t = {
  1. domainIdentifier : DomainId.t;
    (*

    The identifier of the Amazon DataZone domain in which you want to search group profiles.

    *)
  2. groupType : GroupSearchType.t;
    (*

    The group type for which to search.

    *)
  3. searchText : GroupSearchText.t option;
    (*

    Specifies the text for which to search.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?searchText:??? -> ?maxResults:??? -> ?nextToken:??? -> domainIdentifier:DomainId.t -> groupType:GroupSearchType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of MaxResults.t | `String of DomainId.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