Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ScheduledQueryRunSummary

import type { ScheduledQueryRunSummary } from "https://aws-api.deno.dev/v0.3/services/timestreamquery.ts?docs=full";

Run summary for the scheduled query

interface ScheduledQueryRunSummary {
ErrorReportLocation?: ErrorReportLocation | null;
ExecutionStats?: ExecutionStats | null;
FailureReason?: string | null;
InvocationTime?: Date | number | null;
RunStatus?: ScheduledQueryRunStatus | null;
TriggerTime?: Date | number | null;
}

§Properties

§
ErrorReportLocation?: ErrorReportLocation | null
[src]

S3 location for error report.

§
ExecutionStats?: ExecutionStats | null
[src]

Runtime statistics for a scheduled run.

§
FailureReason?: string | null
[src]

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.

§
InvocationTime?: Date | number | null
[src]

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.

§
RunStatus?: ScheduledQueryRunStatus | null
[src]

The status of a scheduled query run.

§
TriggerTime?: Date | number | null
[src]

The actual time when the query was run.