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

RestoreTableFromClusterSnapshotMessage

import type { RestoreTableFromClusterSnapshotMessage } from "https://aws-api.deno.dev/v0.3/services/redshift.ts?docs=full";
interface RestoreTableFromClusterSnapshotMessage {
ClusterIdentifier: string;
EnableCaseSensitiveIdentifier?: boolean | null;
NewTableName: string;
SnapshotIdentifier: string;
SourceDatabaseName: string;
SourceSchemaName?: string | null;
SourceTableName: string;
TargetDatabaseName?: string | null;
TargetSchemaName?: string | null;
}

§Properties

§
ClusterIdentifier: string
[src]

The identifier of the Amazon Redshift cluster to restore the table to.

§
EnableCaseSensitiveIdentifier?: boolean | null
[src]

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

§
NewTableName: string
[src]

The name of the table to create as a result of the current request.

§
SnapshotIdentifier: string
[src]

The identifier of the snapshot to restore the table from. This snapshot must have been created from the Amazon Redshift cluster specified by the ClusterIdentifier parameter.

§
SourceDatabaseName: string
[src]

The name of the source database that contains the table to restore from.

§
SourceSchemaName?: string | null
[src]

The name of the source schema that contains the table to restore from. If you do not specify a SourceSchemaName value, the default is public.

§
SourceTableName: string
[src]

The name of the source table to restore from.

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