Skip to content

GetAttributes

Source: src/AWS/SimpleDB/GetAttributes.ts

Runtime binding for sdb:GetAttributes.

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

const getAttributes = yield* AWS.SimpleDB.GetAttributes(domain);
const response = yield* getAttributes({
ItemName: "user#123",
ConsistentRead: true,
});
// response.Attributes: [{ Name: "email", Value: "a@b.com" }, ...]