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

SnapshotSchedule

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

Describes a snapshot schedule. You can set a regular interval for creating snapshots of a cluster. You can also schedule snapshots for specific dates.

interface SnapshotSchedule {
AssociatedClusterCount?: number | null;
AssociatedClusters: ClusterAssociatedToSchedule[];
NextInvocations: (Date | number)[];
ScheduleDefinitions: string[];
ScheduleDescription?: string | null;
ScheduleIdentifier?: string | null;
Tags: Tag[];
}

§Properties

§
AssociatedClusterCount?: number | null
[src]

The number of clusters associated with the schedule.

§
AssociatedClusters: ClusterAssociatedToSchedule[]
[src]

A list of clusters associated with the schedule. A maximum of 100 clusters is returned.

§
NextInvocations: (Date | number)[]
[src]
§
ScheduleDefinitions: string[]
[src]

A list of ScheduleDefinitions.

§
ScheduleDescription?: string | null
[src]

The description of the schedule.

§
ScheduleIdentifier?: string | null
[src]

A unique identifier for the schedule.

§
Tags: Tag[]
[src]

An optional set of tags describing the schedule.