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

SelectColumn

import type { SelectColumn } from "https://aws-api.deno.dev/v0.4/services/timestreamquery.ts?docs=full";

Details of the column that is returned by the query.

interface SelectColumn {
Aliased?: boolean | null;
DatabaseName?: string | null;
Name?: string | null;
TableName?: string | null;
Type?: Type | null;
}

§Properties

§
Aliased?: boolean | null
[src]

True, if the column name was aliased by the query. False otherwise.

§
DatabaseName?: string | null
[src]

Database that has this column.

§
Name?: string | null
[src]

Name of the column.

§
TableName?: string | null
[src]

Table within the database that has this column.

§
Type?: Type | null
[src]