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

RestoreTableFromBackupInput

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

§Properties

§
BackupArn: string
[src]

The Amazon Resource Name (ARN) associated with the backup.

§
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.

§
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 the backup must be restored.