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

QueryResponse

import type { QueryResponse } from "https://aws-api.deno.dev/v0.3/services/timestreamquery.ts?docs=full";
interface QueryResponse {
ColumnInfo: ColumnInfo[];
NextToken?: string | null;
QueryId: string;
QueryStatus?: QueryStatus | null;
Rows: Row[];
}

§Properties

§
ColumnInfo: ColumnInfo[]
[src]

The column data types of the returned result set.

§
NextToken?: string | null
[src]

A pagination token that can be used again on a Query call to get the next set of results.

§
QueryId: string
[src]

A unique ID for the given query.

§
QueryStatus?: QueryStatus | null
[src]

Information about the status of the query, including progress and bytes scanned.

§
Rows: Row[]
[src]

The result set rows returned by the query.