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

BatchCreatePartitionRequest

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

§Properties

§
CatalogId?: string | null
[src]

The ID of the catalog in which the partition is to be created. Currently, this should be the Amazon Web Services account ID.

§
DatabaseName: string
[src]

The name of the metadata database in which the partition is to be created.

§
PartitionInputList: PartitionInput[]
[src]

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

§
TableName: string
[src]

The name of the metadata table in which the partition is to be created.