Skip to content

GetBlacklistReports

Source: src/AWS/SES/GetBlacklistReports.ts

Runtime binding for sesv2:GetBlacklistReports.

Retrieves, per dedicated-IP address, the list of anti-spam blacklists (RBLs) that IP currently appears on, with the observation time. Useful for a reputation dashboard over the account’s dedicated IPs. Account-level operation. Provide the implementation with Effect.provide(AWS.SES.GetBlacklistReportsHttp).

// init — account-level binding, no resource argument
const getBlacklists = yield* SES.GetBlacklistReports();
// runtime — the dedicated IP addresses to check
const { BlacklistReport } = yield* getBlacklists({
BlacklistItemNames: ["192.0.2.1"],
});