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

PartitionInput

import type { PartitionInput } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";

The structure used to create and update a partition.

interface PartitionInput {
LastAccessTime?: Date | number | null;
LastAnalyzedTime?: Date | number | null;
Parameters?: {
[key: string]: string | null | undefined;
}
| null;
StorageDescriptor?: StorageDescriptor | null;
Values?: string[] | null;
}

§Properties

§
LastAccessTime?: Date | number | null
[src]

The last time at which the partition was accessed.

§
LastAnalyzedTime?: Date | number | null
[src]

The last time at which column statistics were computed for this partition.

§
Parameters?: {
[key: string]: string | null | undefined;
}
| null
[src]

These key-value pairs define partition parameters.

§
StorageDescriptor?: StorageDescriptor | null
[src]

Provides information about the physical location where the partition is stored.

§
Values?: string[] | null
[src]

The values of the partition. Although this parameter is not required by the SDK, you must specify this parameter for a valid input.

The values for the keys for the new partition must be passed as an array of String objects that must be ordered in the same order as the partition keys appearing in the Amazon S3 prefix. Otherwise Glue will add the values to the wrong keys.