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

SelectRequest

import type { SelectRequest } from "https://aws-api.deno.dev/v0.4/services/simpledb.ts?docs=full";
interface SelectRequest {
ConsistentRead?: boolean | null;
NextToken?: string | null;
SelectExpression: string;
}

§Properties

§
ConsistentRead?: boolean | null
[src]

Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If

true

, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.

§
NextToken?: string | null
[src]

A string informing Amazon SimpleDB where to start the next list of

ItemNames
§
SelectExpression: string
[src]

The expression used to query the domain.