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

RestoreSummary

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

Contains details for the restore.

interface RestoreSummary {
RestoreDateTime: Date | number;
RestoreInProgress: boolean;
SourceBackupArn?: string | null;
SourceTableArn?: string | null;
}

§Properties

§
RestoreDateTime: Date | number
[src]

Point in time or source backup time.

§
RestoreInProgress: boolean
[src]

Indicates if a restore is in progress or not.

§
SourceBackupArn?: string | null
[src]

The Amazon Resource Name (ARN) of the backup from which the table was restored.

§
SourceTableArn?: string | null
[src]

The ARN of the source table of the backup that is being restored.