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

ParameterizedStatement

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

Represents a PartiQL statment that uses parameters.

interface ParameterizedStatement {
Parameters?: AttributeValue[] | null;
Statement: string;
}

§Properties

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

The parameter values.

§
Statement: string
[src]

A PartiQL statment that uses parameters.