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

ExecuteStatementResponse

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

The response elements represent the output of a request to run a SQL statement against a database.

interface ExecuteStatementResponse {
columnMetadata?: ColumnMetadata[] | null;
generatedFields?: Field[] | null;
numberOfRecordsUpdated?: number | null;
records?: Field[][] | null;
}

§Properties

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

Metadata for the columns included in the results.

§
generatedFields?: Field[] | null
[src]

TODO: Failed to render documentation: unhandled top level doc tag pre

§
numberOfRecordsUpdated?: number | null
[src]

The number of records updated by the request.

§
records?: Field[][] | null
[src]

The records returned by the SQL statement.