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

UpdateTableRequest

import type { UpdateTableRequest } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";
interface UpdateTableRequest {
CatalogId?: string | null;
DatabaseName: string;
SkipArchive?: boolean | null;
TableInput: TableInput;
TransactionId?: string | null;
}

§Properties

§
CatalogId?: string | null
[src]

The ID of the Data Catalog where the table resides. If none is provided, the Amazon Web Services account ID is used by default.

§
DatabaseName: string
[src]

The name of the catalog database in which the table resides. For Hive compatibility, this name is entirely lowercase.

§
SkipArchive?: boolean | null
[src]

By default, UpdateTable always creates an archived version of the table before updating it. However, if skipArchive is set to true, UpdateTable does not create the archived version.

§
TableInput: TableInput
[src]

An updated TableInput object to define the metadata table in the catalog.

§
TransactionId?: string | null
[src]

The transaction ID at which to update the table contents.