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

PhysicalTable

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

A view of a data source that contains information about the shape of the data in the underlying source. This is a variant type structure. For this structure to be valid, only one of the attributes can be non-null.

interface PhysicalTable {
CustomSql?: CustomSql | null;
RelationalTable?: RelationalTable | null;
S3Source?: S3Source | null;
}

§Properties

§
CustomSql?: CustomSql | null
[src]

A physical table type built from the results of the custom SQL query.

§
RelationalTable?: RelationalTable | null
[src]

A physical table type for relational data sources.

§
S3Source?: S3Source | null
[src]

A physical table type for as S3 data source.