import type * as sdb from "@distilled.cloud/aws/simpledb"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { RuntimeContext } from "../../RuntimeContext.ts"; import type { Domain } from "./Domain.ts"; export interface PutAttributesRequest extends Omit { } /** * Runtime binding for `sdb:PutAttributes`. * * Bind this operation to a {@link Domain} inside a function runtime to get a * callable that automatically injects the domain name. * ### Writing Items * **Example:** Put Attributes on an Item * ```typescript * 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 }, * ], * }); * ``` * * @binding */ export interface PutAttributes extends Binding.Service Effect.Effect<(request: PutAttributesRequest) => Effect.Effect>> { } export declare const PutAttributes: PutAttributes; //# sourceMappingURL=PutAttributes.d.ts.map