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

ColumnStatistics

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

Represents the generated column-level statistics for a table or partition.

interface ColumnStatistics {
AnalyzedTime: Date | number;
ColumnName: string;
ColumnType: string;
StatisticsData: ColumnStatisticsData;
}

§Properties

§
AnalyzedTime: Date | number
[src]

The timestamp of when column statistics were generated.

§
ColumnName: string
[src]

Name of column which statistics belong to.

§
ColumnType: string
[src]

The data type of the column.

§

A ColumnStatisticData object that contains the statistics data values.