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

BatchDeleteTableRequest

import type { BatchDeleteTableRequest } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";
interface BatchDeleteTableRequest {
CatalogId?: string | null;
DatabaseName: string;
TablesToDelete: 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 tables to delete reside. For Hive compatibility, this name is entirely lowercase.

§
TablesToDelete: string[]
[src]

A list of the table to delete.

§
TransactionId?: string | null
[src]

The transaction ID at which to delete the table contents.