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

RelationalTable

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

A physical table type for relational data sources.

interface RelationalTable {
Catalog?: string | null;
DataSourceArn: string;
InputColumns: InputColumn[];
Name: string;
Schema?: string | null;
}

§Properties

§
Catalog?: string | null
[src]

The catalog associated with a table.

§
DataSourceArn: string
[src]

The Amazon Resource Name (ARN) for the data source.

§
InputColumns: InputColumn[]
[src]

The column schema of the table.

§
Name: string
[src]

The name of the relational table.

§
Schema?: string | null
[src]

The schema name. This name applies to certain relational database engines.