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

GetStatementResultResponse

import type { GetStatementResultResponse } from "https://aws-api.deno.dev/v0.3/services/redshiftdata.ts?docs=full";
interface GetStatementResultResponse {
ColumnMetadata?: ColumnMetadata[] | null;
NextToken?: string | null;
Records: Field[][];
TotalNumRows?: number | null;
}

§Properties

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

The properties (metadata) of a column.

§
NextToken?: string | null
[src]

A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned NextToken value in the next NextToken parameter and retrying the command. If the NextToken field is empty, all response records have been retrieved for the request.

§
Records: Field[][]
[src]

The results of the SQL statement.

§
TotalNumRows?: number | null
[src]

The total number of rows in the result set returned from a query. You can use this number to estimate the number of calls to the GetStatementResult operation needed to page through the results.