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

DeleteTableRequest

import type { DeleteTableRequest } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";
interface DeleteTableRequest {
CatalogId?: string | null;
DatabaseName: string;
Name: string;
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.

§
Name: string
[src]

The name of the table to be deleted. For Hive compatibility, this name is entirely lowercase.

§
TransactionId?: string | null
[src]

The transaction ID at which to delete the table contents.