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

CreateBackupPlanInput

import type { CreateBackupPlanInput } from "https://aws-api.deno.dev/v0.4/services/backup.ts?docs=full";
interface CreateBackupPlanInput {
BackupPlan: BackupPlanInput;
BackupPlanTags?: {
[key: string]: string | null | undefined;
}
| null;
CreatorRequestId?: string | null;
}

§Properties

§

Specifies the body of a backup plan. Includes a BackupPlanName and one or more sets of Rules.

§
BackupPlanTags?: {
[key: string]: string | null | undefined;
}
| null
[src]

To help organize your resources, you can assign your own metadata to the resources that you create. Each tag is a key-value pair. The specified tags are assigned to all backups created with this plan.

§
CreatorRequestId?: string | null
[src]

Identifies the request and allows failed requests to be retried without the risk of running the operation twice. If the request includes a CreatorRequestId that matches an existing backup plan, that plan is returned. This parameter is optional.

If used, this parameter must contain 1 to 50 alphanumeric or '-_.' characters.