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

PointInTimeRecoveryDescription

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

The description of the point in time settings applied to the table.

interface PointInTimeRecoveryDescription {
EarliestRestorableDateTime?: Date | number | null;
LatestRestorableDateTime?: Date | number | null;
PointInTimeRecoveryStatus?: PointInTimeRecoveryStatus | null;
}

§Properties

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

Specifies the earliest point in time you can restore your table to. You can restore your table to any point in time during the last 35 days.

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

LatestRestorableDateTime is typically 5 minutes before the current time.

§
PointInTimeRecoveryStatus?: PointInTimeRecoveryStatus | null
[src]

The current state of point in time recovery:

  • ENABLING - Point in time recovery is being enabled.
  • ENABLED - Point in time recovery is enabled.
  • DISABLED - Point in time recovery is disabled.