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

DeletePartitionRequest

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

§
PartitionValues: string[]
[src]

The values that define the partition.

§
TableName: string
[src]

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