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

DeleteAttributesRequest

import type { DeleteAttributesRequest } from "https://aws-api.deno.dev/v0.4/services/simpledb.ts?docs=full";
interface DeleteAttributesRequest {
Attributes?: DeletableAttribute[] | null;
DomainName: string;
Expected?: UpdateCondition | null;
ItemName: string;
}

§Properties

§
Attributes?: DeletableAttribute[] | null
[src]

A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.

§
DomainName: string
[src]

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

§
Expected?: UpdateCondition | null
[src]

The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.

§
ItemName: string
[src]

The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.