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

ScheduledQueryDescription

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

Structure that describes scheduled query.

interface ScheduledQueryDescription {
Arn: string;
CreationTime?: Date | number | null;
ErrorReportConfiguration?: ErrorReportConfiguration | null;
KmsKeyId?: string | null;
LastRunSummary?: ScheduledQueryRunSummary | null;
Name: string;
NextInvocationTime?: Date | number | null;
NotificationConfiguration: NotificationConfiguration;
PreviousInvocationTime?: Date | number | null;
QueryString: string;
RecentlyFailedRuns?: ScheduledQueryRunSummary[] | null;
ScheduleConfiguration: ScheduleConfiguration;
ScheduledQueryExecutionRoleArn?: string | null;
TargetConfiguration?: TargetConfiguration | null;
}

§Properties

§
Arn: string
[src]

Scheduled query ARN.

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

Creation time of the scheduled query.

§
ErrorReportConfiguration?: ErrorReportConfiguration | null
[src]

Error-reporting configuration for the scheduled query.

§
KmsKeyId?: string | null
[src]

A customer provided KMS key used to encrypt the scheduled query resource.

§
LastRunSummary?: ScheduledQueryRunSummary | null
[src]

Runtime summary for the last scheduled query run.

§
Name: string
[src]

Name of the scheduled query.

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

The next time the scheduled query is scheduled to run.

§
NotificationConfiguration: NotificationConfiguration
[src]

Notification configuration.

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

Last time the query was run.

§
QueryString: string
[src]

The query to be run.

§
RecentlyFailedRuns?: ScheduledQueryRunSummary[] | null
[src]

Runtime summary for the last five failed scheduled query runs.

§
ScheduleConfiguration: ScheduleConfiguration
[src]

Schedule configuration.

§
ScheduledQueryExecutionRoleArn?: string | null
[src]

IAM role that Timestream uses to run the schedule query.

§

State of the scheduled query.

§
TargetConfiguration?: TargetConfiguration | null
[src]

Scheduled query target store configuration.