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

StringColumnStatisticsData

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

Defines column statistics supported for character sequence data values.

interface StringColumnStatisticsData {
AverageLength: number;
MaximumLength: number;
NumberOfDistinctValues: number;
NumberOfNulls: number;
}

§Properties

§
AverageLength: number
[src]

The average string length in the column.

§
MaximumLength: number
[src]

The size of the longest string in the column.

§
NumberOfDistinctValues: number
[src]

The number of distinct values in a column.

§
NumberOfNulls: number
[src]

The number of null values in the column.