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

BatchDeletePartitionRequest

import type { BatchDeletePartitionRequest } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";
interface BatchDeletePartitionRequest {
CatalogId?: string | null;
DatabaseName: string;
PartitionsToDelete: PartitionValueList[];
TableName: string;
}

§Properties

§
CatalogId?: string | null
[src]

The ID of the Data Catalog where the partition to be deleted 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 in question resides.

§
PartitionsToDelete: PartitionValueList[]
[src]

A list of PartitionInput structures that define the partitions to be deleted.

§
TableName: string
[src]

The name of the table that contains the partitions to be deleted.