Module Values.GetQueryExecutionOutputSource

Returns information about a single execution of a query if you have access to the workgroup in which the query ran. Each time a query executes, information about the query execution is saved with a unique ID.

Sourcetype nonrec t = {
  1. queryExecution : QueryExecution.t option;
    (*

    Information about the query execution.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerException of InternalServerException.t
  2. | `InvalidRequestException of InvalidRequestException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?queryExecution:??? -> 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 * [> `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 ]
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