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

CreateLegalHoldInput

import type { CreateLegalHoldInput } from "https://aws-api.deno.dev/v0.4/services/backup.ts?docs=full";
interface CreateLegalHoldInput {
Description: string;
IdempotencyToken?: string | null;
RecoveryPointSelection?: RecoveryPointSelection | null;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
Title: string;
}

§Properties

§
Description: string
[src]

This is the string description of the legal hold.

§
IdempotencyToken?: string | null
[src]

This is a user-chosen string used to distinguish between otherwise identical calls. Retrying a successful request with the same idempotency token results in a success message with no action taken.

§
RecoveryPointSelection?: RecoveryPointSelection | null
[src]

This specifies criteria to assign a set of resources, such as resource types or backup vaults.

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

Optional tags to include. A tag is a key-value pair you can use to manage, filter, and search for your resources. Allowed characters include UTF-8 letters, numbers, spaces, and the following characters: + - = . _ : /.

§
Title: string
[src]

This is the string title of the legal hold.