Skip to content

PutAttributes

Source: src/AWS/SimpleDB/PutAttributes.ts

Runtime binding for sdb:PutAttributes.

Bind this operation to a Domain inside a function runtime to get a callable that automatically injects the domain name.

const putAttributes = yield* AWS.SimpleDB.PutAttributes(domain);
yield* putAttributes({
ItemName: "user#123",
Attributes: [
{ Name: "email", Value: "a@b.com", Replace: true },
{ Name: "plan", Value: "pro", Replace: true },
],
});