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

CopyBackupRequest

import type { CopyBackupRequest } from "https://aws-api.deno.dev/v0.4/services/fsx.ts?docs=full";
interface CopyBackupRequest {
ClientRequestToken?: string | null;
CopyTags?: boolean | null;
KmsKeyId?: string | null;
SourceBackupId: string;
SourceRegion?: string | null;
Tags?: Tag[] | null;
}

§Properties

§
ClientRequestToken?: string | null
[src]
§
CopyTags?: boolean | null
[src]

A Boolean flag indicating whether tags from the source backup should be copied to the backup copy. This value defaults to false.

If you set CopyTags to true and the source backup has existing tags, you can use the Tags parameter to create new tags, provided that the sum of the source backup tags and the new tags doesn't exceed 50. Both sets of tags are merged. If there are tag conflicts (for example, two tags with the same key but different values), the tags created with the Tags parameter take precedence.

§
KmsKeyId?: string | null
[src]
§
SourceBackupId: string
[src]

The ID of the source backup. Specifies the ID of the backup that's being copied.

§
SourceRegion?: string | null
[src]

The source Amazon Web Services Region of the backup. Specifies the Amazon Web Services Region from which the backup is being copied. The source and destination Regions must be in the same Amazon Web Services partition. If you don't specify a Region, SourceRegion defaults to the Region where the request is sent from (in-Region copy).

§
Tags?: Tag[] | null
[src]