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

ArchivalSummary

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

Contains details of a table archival operation.

interface ArchivalSummary {
ArchivalBackupArn?: string | null;
ArchivalDateTime?: Date | number | null;
ArchivalReason?: string | null;
}

§Properties

§
ArchivalBackupArn?: string | null
[src]

The Amazon Resource Name (ARN) of the backup the table was archived to, when applicable in the archival reason. If you wish to restore this backup to the same table name, you will need to delete the original table.

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

The date and time when table archival was initiated by DynamoDB, in UNIX epoch time format.

§
ArchivalReason?: string | null
[src]

The reason DynamoDB archived the table. Currently, the only possible value is:

  • INACCESSIBLE_ENCRYPTION_CREDENTIALS - The table was archived due to the table's KMS key being inaccessible for more than seven days. An On-Demand backup was created at the archival time.