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

TableRestoreStatus

import type { TableRestoreStatus } from "https://aws-api.deno.dev/v0.4/services/redshiftserverless.ts?docs=full";

Contains information about a table restore request.

interface TableRestoreStatus {
message?: string | null;
namespaceName?: string | null;
newTableName?: string | null;
progressInMegaBytes?: number | null;
requestTime?: Date | number | null;
snapshotName?: string | null;
sourceDatabaseName?: string | null;
sourceSchemaName?: string | null;
sourceTableName?: string | null;
status?: string | null;
tableRestoreRequestId?: string | null;
targetDatabaseName?: string | null;
targetSchemaName?: string | null;
totalDataInMegaBytes?: number | null;
workgroupName?: string | null;
}

§Properties

§
message?: string | null
[src]

A description of the status of the table restore request. Status values include SUCCEEDED, FAILED, CANCELED, PENDING, IN_PROGRESS.

§
namespaceName?: string | null
[src]

The namespace of the table being restored from.

§
newTableName?: string | null
[src]

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

§
progressInMegaBytes?: number | null
[src]

The amount of data restored to the new table so far, in megabytes (MB).

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

The time that the table restore request was made, in Universal Coordinated Time (UTC).

§
snapshotName?: string | null
[src]

The name of the snapshot being restored from.

§
sourceDatabaseName?: string | null
[src]

The name of the source database being restored from.

§
sourceSchemaName?: string | null
[src]

The name of the source schema being restored from.

§
sourceTableName?: string | null
[src]

The name of the source table being restored from.

§
status?: string | null
[src]

A value that describes the current state of the table restore request. Possible values include SUCCEEDED, FAILED, CANCELED, PENDING, IN_PROGRESS.

§
tableRestoreRequestId?: string | null
[src]

The ID of the RestoreTableFromSnapshot request.

§
targetDatabaseName?: string | null
[src]

The name of the database to restore to.

§
targetSchemaName?: string | null
[src]

The name of the schema to restore to.

§
totalDataInMegaBytes?: number | null
[src]

The total amount of data to restore to the new table, in megabytes (MB).

§
workgroupName?: string | null
[src]

The name of the workgroup being restored from.