Module Values.BatchGetQueryExecutionOutputSource

Returns the details of a single query execution or a list of up to 50 query executions, which you provide as an array of query execution ID strings. Requires you to have access to the workgroup in which the queries ran. To get a list of query execution IDs, use ListQueryExecutionsInput$WorkGroup. Query executions differ from named (saved) queries. Use BatchGetNamedQueryInput to get details about named queries.

Sourcetype nonrec t = {
  1. queryExecutions : QueryExecutionList.t option;
    (*

    Information about a query execution.

    *)
  2. unprocessedQueryExecutionIds : UnprocessedQueryExecutionIdList.t option;
    (*

    Information about the query executions that failed to run.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerException of InternalServerException.t
  2. | `InvalidRequestException of InvalidRequestException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?queryExecutions:??? -> ?unprocessedQueryExecutionIds:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerException of InternalServerException.t | `InvalidRequestException of InvalidRequestException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServerException of InternalServerException.t | `InvalidRequestException of InvalidRequestException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `List of [> `String of ExecutionParameter.t ] list | `String of QueryExecutionId.t | `Structure of (string * [> `Boolean of Boolean.t | `Double of DpuCount.t | `Enum of string | `Long of Long.t | `String of ResultOutputLocation.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of Age.t | `String of KmsKey.t ]) list | `Timestamp of Date.t ]) list ]) list ] list ]) 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