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

BackupPlan

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

Contains an optional backup plan display name and an array of BackupRule objects, each of which specifies a backup rule. Each rule in a backup plan is a separate scheduled task and can back up a different selection of Amazon Web Services resources.

interface BackupPlan {
AdvancedBackupSettings?: AdvancedBackupSetting[] | null;
BackupPlanName: string;
Rules: BackupRule[];
}

§Properties

§
AdvancedBackupSettings?: AdvancedBackupSetting[] | null
[src]

Contains a list of BackupOptions for each resource type.

§
BackupPlanName: string
[src]

The display name of a backup plan. Must contain 1 to 50 alphanumeric or '-_.' characters.

§

An array of BackupRule objects, each of which specifies a scheduled task that is used to back up a selection of resources.