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

BinaryColumnStatisticsData

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

Defines column statistics supported for bit sequence data values.

interface BinaryColumnStatisticsData {
AverageLength: number;
MaximumLength: number;
NumberOfNulls: number;
}

§Properties

§
AverageLength: number
[src]

The average bit sequence length in the column.

§
MaximumLength: number
[src]

The size of the longest bit sequence in the column.

§
NumberOfNulls: number
[src]

The number of null values in the column.