Module Values.GetQueryResultsRequestSource

Gets event data results of a query. You must specify the QueryID value returned by the StartQuery operation.

Sourcetype nonrec t = {
  1. eventDataStore : EventDataStoreArn.t option;
    (*

    The ARN (or ID suffix of the ARN) of the event data store against which the query was run.

    *)
  2. queryId : UUID.t;
    (*

    The ID of the query for which you want to get results.

    *)
  3. nextToken : PaginationToken.t option;
    (*

    A token you can use to get the next page of query results.

    *)
  4. maxQueryResults : MaxQueryResults.t option;
    (*

    The maximum number of query results to display on a single page.

    *)
  5. eventDataStoreOwnerAccountId : AccountId.t option;
    (*

    The account ID of the event data store owner.

    *)
}
Sourceval context_ : string
Sourceval make : ?eventDataStore:??? -> ?nextToken:??? -> ?maxQueryResults:??? -> ?eventDataStoreOwnerAccountId:??? -> queryId:UUID.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxQueryResults.t | `String of EventDataStoreArn.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