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

BackupSummary

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

Contains details for the backup.

interface BackupSummary {
BackupArn?: string | null;
BackupCreationDateTime?: Date | number | null;
BackupExpiryDateTime?: Date | number | null;
BackupName?: string | null;
BackupSizeBytes?: number | null;
BackupStatus?: BackupStatus | null;
BackupType?: BackupType | null;
TableArn?: string | null;
TableId?: string | null;
TableName?: string | null;
}

§Properties

§
BackupArn?: string | null
[src]

ARN associated with the backup.

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

Time at which the backup was created.

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

Time at which the automatic on-demand backup created by DynamoDB will expire. This SYSTEM on-demand backup expires automatically 35 days after its creation.

§
BackupName?: string | null
[src]

Name of the specified backup.

§
BackupSizeBytes?: number | null
[src]

Size of the backup in bytes.

§
BackupStatus?: BackupStatus | null
[src]

Backup can be in one of the following states: CREATING, ACTIVE, DELETED.

§
BackupType?: BackupType | null
[src]

BackupType:

  • USER - You create and manage these using the on-demand backup feature.
  • SYSTEM - If you delete a table with point-in-time recovery enabled, a SYSTEM backup is automatically created and is retained for 35 days (at no additional cost). System backups allow you to restore the deleted table to the state it was in just before the point of deletion.
  • AWS_BACKUP - On-demand backup created by you from Backup service.
§
TableArn?: string | null
[src]

ARN associated with the table.

§
TableId?: string | null
[src]

Unique identifier for the table.

§
TableName?: string | null
[src]

Name of the table.