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

DecimalColumnStatisticsData

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

Defines column statistics supported for fixed-point number data columns.

interface DecimalColumnStatisticsData {
MaximumValue?: DecimalNumber | null;
MinimumValue?: DecimalNumber | null;
NumberOfDistinctValues: number;
NumberOfNulls: number;
}

§Properties

§
MaximumValue?: DecimalNumber | null
[src]

The highest value in the column.

§
MinimumValue?: DecimalNumber | null
[src]

The lowest value 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.