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

ExecuteStatementInput

import type { ExecuteStatementInput } from "https://aws-api.deno.dev/v0.3/services/dynamodb.ts?docs=full";
interface ExecuteStatementInput {
ConsistentRead?: boolean | null;
NextToken?: string | null;
Parameters?: AttributeValue[] | null;
ReturnConsumedCapacity?: ReturnConsumedCapacity | null;
Statement: string;
}

§Properties

§
ConsistentRead?: boolean | null
[src]

The consistency of a read operation. If set to true, then a strongly consistent read is used; otherwise, an eventually consistent read is used.

§
NextToken?: string | null
[src]

Set this value to get remaining results, if NextToken was returned in the statement response.

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

The parameters for the PartiQL statement, if any.

§
ReturnConsumedCapacity?: ReturnConsumedCapacity | null
[src]
§
Statement: string
[src]

The PartiQL statement representing the operation to run.