Skip to content

BatchDeleteAttributes

Source: src/AWS/SimpleDB/BatchDeleteAttributes.ts

Runtime binding for sdb:BatchDeleteAttributes.

Bind this operation to a Domain inside a function runtime to get a callable that automatically injects the domain name. Deletes attributes (or whole items, when an entry lists no attributes) on up to 25 items in a single call.

const batchDeleteAttributes =
yield* AWS.SimpleDB.BatchDeleteAttributes(domain);
yield* batchDeleteAttributes({
Items: [{ ItemName: "user#1" }, { ItemName: "user#2" }],
});