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

BackupDetails

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

Contains the details of the backup created for the table.

interface BackupDetails {
BackupArn: string;
BackupCreationDateTime: Date | number;
BackupExpiryDateTime?: Date | number | null;
BackupName: string;
BackupSizeBytes?: number | null;
BackupStatus: BackupStatus;
BackupType: BackupType;
}

§Properties

§
BackupArn: string
[src]

ARN associated with the backup.

§
BackupCreationDateTime: Date | number
[src]

Time at which the backup was created. This is the request time of the backup.

§
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
[src]

Name of the requested backup.

§
BackupSizeBytes?: number | null
[src]

Size of the backup in bytes.

§
BackupStatus: BackupStatus
[src]

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

§
BackupType: BackupType
[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.