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

TransformOperation

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

A data transformation on a logical table. This is a variant type structure. For this structure to be valid, only one of the attributes can be non-null.

interface TransformOperation {
CastColumnTypeOperation?: CastColumnTypeOperation | null;
CreateColumnsOperation?: CreateColumnsOperation | null;
FilterOperation?: FilterOperation | null;
ProjectOperation?: ProjectOperation | null;
RenameColumnOperation?: RenameColumnOperation | null;
TagColumnOperation?: TagColumnOperation | null;
UntagColumnOperation?: UntagColumnOperation | null;
}

§Properties

§
CastColumnTypeOperation?: CastColumnTypeOperation | null
[src]

A transform operation that casts a column to a different type.

§
CreateColumnsOperation?: CreateColumnsOperation | null
[src]

An operation that creates calculated columns. Columns created in one such operation form a lexical closure.

§
FilterOperation?: FilterOperation | null
[src]

An operation that filters rows based on some condition.

§
ProjectOperation?: ProjectOperation | null
[src]

An operation that projects columns. Operations that come after a projection can only refer to projected columns.

§
RenameColumnOperation?: RenameColumnOperation | null
[src]

An operation that renames a column.

§
TagColumnOperation?: TagColumnOperation | null
[src]

An operation that tags a column with additional information.

§
UntagColumnOperation?: UntagColumnOperation | null
[src]