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

LogicalTable

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

A logical table is a unit that joins and that data transformations operate on. A logical table has a source, which can be either a physical table or result of a join. When a logical table points to a physical table, the logical table acts as a mutable copy of that physical table through transform operations.

interface LogicalTable {
Alias: string;
DataTransforms?: TransformOperation[] | null;
}

§Properties

§
Alias: string
[src]

A display name for the logical table.

§
DataTransforms?: TransformOperation[] | null
[src]

Transform operations that act on this logical table.

§

Source of this logical table.