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

ColumnInfo

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

Information about the columns in a query execution result.

interface ColumnInfo {
CaseSensitive?: boolean | null;
CatalogName?: string | null;
Label?: string | null;
Name: string;
Nullable?: ColumnNullable | null;
Precision?: number | null;
Scale?: number | null;
SchemaName?: string | null;
TableName?: string | null;
Type: string;
}

§Properties

§
CaseSensitive?: boolean | null
[src]

Indicates whether values in the column are case-sensitive.

§
CatalogName?: string | null
[src]

The catalog to which the query results belong.

§
Label?: string | null
[src]

A column label.

§
Name: string
[src]

The name of the column.

§
Nullable?: ColumnNullable | null
[src]

Indicates the column's nullable status.

§
Precision?: number | null
[src]

For DECIMAL data types, specifies the total number of digits, up to 38. For performance reasons, we recommend up to 18 digits.

§
Scale?: number | null
[src]

For DECIMAL data types, specifies the total number of digits in the fractional part of the value. Defaults to 0.

§
SchemaName?: string | null
[src]

The schema name (database name) to which the query results belong.

§
TableName?: string | null
[src]

The table name for the query results.

§
Type: string
[src]

The data type of the column.