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

BackupPlanInput

import type { BackupPlanInput } 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.

interface BackupPlanInput {
AdvancedBackupSettings?: AdvancedBackupSetting[] | null;
BackupPlanName: string;
Rules: BackupRuleInput[];
}

§Properties

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

Specifies a list of BackupOptions for each resource type. These settings are only available for Windows Volume Shadow Copy Service (VSS) backup jobs.

§
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.