Module Values_2.SearchDashboardsRequestSource

Searches for dashboards that belong to a user. This operation is eventually consistent. The results are best effort and may not reflect very recent updates and changes.

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

    The ID of the Amazon Web Services account that contains the user whose dashboards you're searching for.

    *)
  2. filters : Values_1.DashboardSearchFilterList.t;
    (*

    The filters to apply to the search. Currently, you can search only by user name, for example, "Filters": [ { "Name": "QUICKSIGHT_USER", "Operator": "StringEquals", "Value": "arn:aws:quicksight:us-east-1:1:user/default/UserName1" } ]

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

    The token for the next set of results, or null if there are no more results.

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

    The maximum number of results to be returned per request.

    *)
}
Sourceval context_ : string
Sourceval make : ?nextToken:??? -> ?maxResults:??? -> awsAccountId:Values_1.AwsAccountId.t -> filters:Values_1.DashboardSearchFilterList.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