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

BatchStatementRequest

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

A PartiQL batch statement request.

interface BatchStatementRequest {
ConsistentRead?: boolean | null;
Parameters?: AttributeValue[] | null;
Statement: string;
}

§Properties

§
ConsistentRead?: boolean | null
[src]

The read consistency of the PartiQL batch request.

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

The parameters associated with a PartiQL statement in the batch request.

§
Statement: string
[src]

A valid PartiQL statement.