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

UpdatePartitionRequest

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

§Properties

§
CatalogId?: string | null
[src]

The ID of the Data Catalog where the partition to be updated 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.

§
PartitionInput: PartitionInput
[src]

The new partition object to update the partition to.

The Values property can't be changed. If you want to change the partition key values for a partition, delete and recreate the partition.

§
PartitionValueList: string[]
[src]

List of partition key values that define the partition to update.

§
TableName: string
[src]

The name of the table in which the partition to be updated is located.