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

RestoreTableFromSnapshotRequest

import type { RestoreTableFromSnapshotRequest } from "https://aws-api.deno.dev/v0.4/services/redshiftserverless.ts?docs=full";
interface RestoreTableFromSnapshotRequest {
activateCaseSensitiveIdentifier?: boolean | null;
namespaceName: string;
newTableName: string;
snapshotName: string;
sourceDatabaseName: string;
sourceSchemaName?: string | null;
sourceTableName: string;
targetDatabaseName?: string | null;
targetSchemaName?: string | null;
workgroupName: string;
}

§Properties

§
activateCaseSensitiveIdentifier?: boolean | null
[src]

Indicates whether name identifiers for database, schema, and table are case sensitive. If true, the names are case sensitive. If false, the names are not case sensitive. The default is false.

§
namespaceName: string
[src]

The namespace of the snapshot to restore from.

§
newTableName: string
[src]

The name of the table to create from the restore operation.

§
snapshotName: string
[src]

The name of the snapshot to restore the table from.

§
sourceDatabaseName: string
[src]

The name of the source database that contains the table being restored.

§
sourceSchemaName?: string | null
[src]

The name of the source schema that contains the table being restored.

§
sourceTableName: string
[src]

The name of the source table being restored.

§
targetDatabaseName?: string | null
[src]

The name of the database to restore the table to.

§
targetSchemaName?: string | null
[src]

The name of the schema to restore the table to.

§
workgroupName: string
[src]

The workgroup to restore the table to.