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

ViewFrame

import type { ViewFrame } from "https://aws-api.deno.dev/v0.4/services/databrew.ts?docs=full";

Represents the data being transformed during an action.

interface ViewFrame {
Analytics?: AnalyticsMode | null;
ColumnRange?: number | null;
HiddenColumns?: string[] | null;
RowRange?: number | null;
StartColumnIndex: number;
StartRowIndex?: number | null;
}

§Properties

§
Analytics?: AnalyticsMode | null
[src]

Controls if analytics computation is enabled or disabled. Enabled by default.

§
ColumnRange?: number | null
[src]

The number of columns to include in the view frame, beginning with the StartColumnIndex value and ignoring any columns in the HiddenColumns list.

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

A list of columns to hide in the view frame.

§
RowRange?: number | null
[src]

The number of rows to include in the view frame, beginning with the StartRowIndex value.

§
StartColumnIndex: number
[src]

The starting index for the range of columns to return in the view frame.

§
StartRowIndex?: number | null
[src]

The starting index for the range of rows to return in the view frame.