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

UpdateColumnStatisticsForPartitionRequest

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

§Properties

§
CatalogId?: string | null
[src]

The ID of the Data Catalog where the partitions in question reside. If none is supplied, the Amazon Web Services account ID is used by default.

§
ColumnStatisticsList: ColumnStatistics[]
[src]

A list of the column statistics.

§
DatabaseName: string
[src]

The name of the catalog database where the partitions reside.

§
PartitionValues: string[]
[src]

A list of partition values identifying the partition.

§
TableName: string
[src]

The name of the partitions' table.