Values.GetQueryResultsRequestSourceGets event data results of a query. You must specify the QueryID value returned by the StartQuery operation.
type nonrec t = {eventDataStore : EventDataStoreArn.t option;The ARN (or ID suffix of the ARN) of the event data store against which the query was run.
*)queryId : UUID.t;The ID of the query for which you want to get results.
*)nextToken : PaginationToken.t option;A token you can use to get the next page of query results.
*)maxQueryResults : MaxQueryResults.t option;The maximum number of query results to display on a single page.
*)eventDataStoreOwnerAccountId : AccountId.t option;The account ID of the event data store owner.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Integer of MaxQueryResults.t | `String of EventDataStoreArn.t ])
list ]