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.
Deleting Items
Section titled “Deleting Items”const batchDeleteAttributes = yield* AWS.SimpleDB.BatchDeleteAttributes(domain);
yield* batchDeleteAttributes({ Items: [{ ItemName: "user#1" }, { ItemName: "user#2" }],});