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

Partition

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

Represents a slice of table data.

interface Partition {
CatalogId?: string | null;
CreationTime?: Date | number | null;
DatabaseName?: string | null;
LastAccessTime?: Date | number | null;
LastAnalyzedTime?: Date | number | null;
Parameters?: {
[key: string]: string | null | undefined;
}
| null;
StorageDescriptor?: StorageDescriptor | null;
TableName?: string | null;
Values?: string[] | null;
}

§Properties

§
CatalogId?: string | null
[src]

The ID of the Data Catalog in which the partition resides.

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

The time at which the partition was created.

§
DatabaseName?: string | null
[src]

The name of the catalog database in which to create the partition.

§
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.

§
TableName?: string | null
[src]

The name of the database table in which to create the partition.

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

The values of the partition.