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

CustomSql

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

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

interface CustomSql {
Columns?: InputColumn[] | null;
DataSourceArn: string;
Name: string;
SqlQuery: string;
}

§Properties

§
Columns?: InputColumn[] | null
[src]

The column schema from the SQL query result set.

§
DataSourceArn: string
[src]

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

§
Name: string
[src]

A display name for the SQL query result.

§
SqlQuery: string
[src]

The SQL query.