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

GetAttributesRequest

import type { GetAttributesRequest } from "https://aws-api.deno.dev/v0.4/services/simpledb.ts?docs=full";
interface GetAttributesRequest {
AttributeNames?: string[] | null;
ConsistentRead?: boolean | null;
DomainName: string;
ItemName: string;
}

§Properties

§
AttributeNames?: string[] | null
[src]

The names of the attributes.

§
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.

§
DomainName: string
[src]

The name of the domain in which to perform the operation.

§
ItemName: string
[src]

The name of the item.