Module Values_2.SearchGroupsRequestSource

Use the SearchGroups operation to search groups in a specified Quick Sight namespace using the supplied filters.

Sourcetype nonrec t = {
  1. awsAccountId : Values_1.AwsAccountId.t;
    (*

    The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the Amazon Web Services account that contains your Amazon Quick Sight account.

    *)
  2. nextToken : Values_0.String_.t option;
    (*

    A pagination token that can be used in a subsequent request.

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

    The maximum number of results to return from this request.

    *)
  4. namespace : Values_0.Namespace.t;
    (*

    The namespace that you want to search.

    *)
  5. filters : GroupSearchFilterList.t;
    (*

    The structure for the search filters that you want to apply to your search.

    *)
}
Sourceval context_ : string
Sourceval make : ?nextToken:??? -> ?maxResults:??? -> awsAccountId:Values_1.AwsAccountId.t -> namespace:Values_0.Namespace.t -> filters:GroupSearchFilterList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `List of [> `Structure of (string * [> `Enum of string | `String of Values_0.String_.t ]) list ] list | `String of Values_1.AwsAccountId.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