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

Backup

import type { Backup } from "https://aws-api.deno.dev/v0.4/services/cloudhsmv2.ts?docs=full";

Contains information about a backup of an AWS CloudHSM cluster. All backup objects contain the BackupId, BackupState, ClusterId, and CreateTimestamp parameters. Backups that were copied into a destination region additionally contain the CopyTimestamp, SourceBackup, SourceCluster, and SourceRegion parameters. A backup that is pending deletion will include the DeleteTimestamp parameter.

interface Backup {
BackupId: string;
BackupState?: BackupState | null;
ClusterId?: string | null;
CopyTimestamp?: Date | number | null;
CreateTimestamp?: Date | number | null;
DeleteTimestamp?: Date | number | null;
NeverExpires?: boolean | null;
SourceBackup?: string | null;
SourceCluster?: string | null;
SourceRegion?: string | null;
TagList?: Tag[] | null;
}

§Properties

§
BackupId: string
[src]

The identifier (ID) of the backup.

§
BackupState?: BackupState | null
[src]

The state of the backup.

§
ClusterId?: string | null
[src]

The identifier (ID) of the cluster that was backed up.

§
CopyTimestamp?: Date | number | null
[src]

The date and time when the backup was copied from a source backup.

§
CreateTimestamp?: Date | number | null
[src]

The date and time when the backup was created.

§
DeleteTimestamp?: Date | number | null
[src]

The date and time when the backup will be permanently deleted.

§
NeverExpires?: boolean | null
[src]

Specifies whether the service should exempt a backup from the retention policy for the cluster. True exempts a backup from the retention policy. False means the service applies the backup retention policy defined at the cluster.

§
SourceBackup?: string | null
[src]

The identifier (ID) of the source backup from which the new backup was copied.

§
SourceCluster?: string | null
[src]

The identifier (ID) of the cluster containing the source backup from which the new backup was copied.

§
SourceRegion?: string | null
[src]

The AWS Region that contains the source backup from which the new backup was copied.

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

The list of tags for the backup.