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

SkewedInfo

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

Specifies skewed values in a table. Skewed values are those that occur with very high frequency.

interface SkewedInfo {
SkewedColumnNames?: string[] | null;
SkewedColumnValueLocationMaps?: {
[key: string]: string | null | undefined;
}
| null;
SkewedColumnValues?: string[] | null;
}

§Properties

§
SkewedColumnNames?: string[] | null
[src]

A list of names of columns that contain skewed values.

§
SkewedColumnValueLocationMaps?: {
[key: string]: string | null | undefined;
}
| null
[src]

A mapping of skewed values to the columns that contain them.

§
SkewedColumnValues?: string[] | null
[src]

A list of values that appear so frequently as to be considered skewed.