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

ResultSetMetadata

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

The metadata that describes the column structure and data types of a table of query results. To return a ResultSetMetadata object, use "GetQueryResults".

interface ResultSetMetadata {
ColumnInfo?: ColumnInfo[] | null;
}

§Properties

§
ColumnInfo?: ColumnInfo[] | null
[src]

Information about the columns returned in a query result metadata.