RegisterMemberToAddressList
Source:
src/AWS/MailManager/RegisterMemberToAddressList.ts
Runtime binding for ses:RegisterMemberToAddressList.
Adds an email address to the bound address list. The address list id
is injected from the binding. Registering an already-present address
succeeds (idempotent upsert). Provide the implementation with
Effect.provide(AWS.MailManager.RegisterMemberToAddressListHttp).
Managing Address List Members
Section titled “Managing Address List Members”// init — bind the operation to the address listconst registerMember = yield* MailManager.RegisterMemberToAddressList(blockList);
// runtimeyield* registerMember({ Address: "spammer@example.com" });