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

AdvancedBackupSetting

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

A list of backup options for each resource type.

interface AdvancedBackupSetting {
BackupOptions?: {
[key: string]: string | null | undefined;
}
| null;
ResourceType?: string | null;
}

§Properties

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

Specifies the backup option for a selected resource. This option is only available for Windows VSS backup jobs.

Valid values:

Set to "WindowsVSS":"enabled" to enable the WindowsVSS backup option and create a Windows VSS backup.

Set to "WindowsVSS":"disabled" to create a regular backup. The WindowsVSS option is not enabled by default.

If you specify an invalid option, you get an InvalidParameterValueException exception.

For more information about Windows VSS backups, see Creating a VSS-Enabled Windows Backup.

§
ResourceType?: string | null
[src]

Specifies an object containing resource type and backup options. The only supported resource type is Amazon EC2 instances with Windows Volume Shadow Copy Service (VSS). For a CloudFormation example, see the sample CloudFormation template to enable Windows VSS in the Backup User Guide.

Valid values: EC2.