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

ExecuteStatementRequest

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

Specifies a request to execute a statement.

interface ExecuteStatementRequest {
Parameters?: ValueHolder[] | null;
Statement: string;
TransactionId: string;
}

§Properties

§
Parameters?: ValueHolder[] | null
[src]

Specifies the parameters for the parameterized statement in the request.

§
Statement: string
[src]

Specifies the statement of the request.

§
TransactionId: string
[src]

Specifies the transaction ID of the request.