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

RestoreTableToPointInTimeInput

import type { RestoreTableToPointInTimeInput } from "https://aws-api.deno.dev/v0.3/services/dynamodb.ts?docs=full";
interface RestoreTableToPointInTimeInput {
BillingModeOverride?: BillingMode | null;
GlobalSecondaryIndexOverride?: GlobalSecondaryIndex[] | null;
LocalSecondaryIndexOverride?: LocalSecondaryIndex[] | null;
ProvisionedThroughputOverride?: ProvisionedThroughput | null;
RestoreDateTime?: Date | number | null;
SourceTableArn?: string | null;
SourceTableName?: string | null;
SSESpecificationOverride?: SSESpecification | null;
TargetTableName: string;
UseLatestRestorableTime?: boolean | null;
}

§Properties

§
BillingModeOverride?: BillingMode | null
[src]

The billing mode of the restored table.

§
GlobalSecondaryIndexOverride?: GlobalSecondaryIndex[] | null
[src]

List of global secondary indexes for the restored table. The indexes provided should match existing secondary indexes. You can choose to exclude some or all of the indexes at the time of restore.

§
LocalSecondaryIndexOverride?: LocalSecondaryIndex[] | null
[src]

List of local secondary indexes for the restored table. The indexes provided should match existing secondary indexes. You can choose to exclude some or all of the indexes at the time of restore.

§
ProvisionedThroughputOverride?: ProvisionedThroughput | null
[src]

Provisioned throughput settings for the restored table.

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

Time in the past to restore the table to.

§
SourceTableArn?: string | null
[src]

The DynamoDB table that will be restored. This value is an Amazon Resource Name (ARN).

§
SourceTableName?: string | null
[src]

Name of the source table that is being restored.

§
SSESpecificationOverride?: SSESpecification | null
[src]

The new server-side encryption settings for the restored table.

§
TargetTableName: string
[src]

The name of the new table to which it must be restored to.

§
UseLatestRestorableTime?: boolean | null
[src]

Restore the table to the latest possible time. LatestRestorableDateTime is typically 5 minutes before the current time.