Module Values.ScheduledQueryRunSummarySource

Run summary for the scheduled query

Sourcetype nonrec t = {
  1. invocationTime : Time.t option;
    (*

    InvocationTime for this run. This is the time at which the query is scheduled to run. Parameter @scheduled_runtime can be used in the query to get the value.

    *)
  2. triggerTime : Time.t option;
    (*

    The actual time when the query was run.

    *)
  3. runStatus : ScheduledQueryRunStatus.t option;
    (*

    The status of a scheduled query run.

    *)
  4. executionStats : ExecutionStats.t option;
    (*

    Runtime statistics for a scheduled run.

    *)
  5. queryInsightsResponse : ScheduledQueryInsightsResponse.t option;
    (*

    Provides various insights and metrics related to the run summary of the scheduled query.

    *)
  6. errorReportLocation : ErrorReportLocation.t option;
    (*

    S3 location for error report.

    *)
  7. failureReason : ErrorMessage.t option;
    (*

    Error message for the scheduled query in case of failure. You might have to look at the error report to get more detailed error reasons.

    *)
}
Sourceval make : ?invocationTime:??? -> ?triggerTime:??? -> ?runStatus:??? -> ?executionStats:??? -> ?queryInsightsResponse:??? -> ?errorReportLocation:??? -> ?failureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ErrorMessage.t | `Structure of (string * [> `Long of Long.t | `Structure of (string * [> `String of S3BucketName.t | `Structure of (string * [> `Double of Double.t | `List of [> `String of PartitionKey.t ] list | `Long of Long.t | `String of AmazonResourceName.t ]) list ]) list ]) list | `Timestamp of Time.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