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).
Deliverability Insights
Section titled “Deliverability Insights”// init — account-level binding, no resource argumentconst getBlacklists = yield* SES.GetBlacklistReports();
// runtime — the dedicated IP addresses to checkconst { BlacklistReport } = yield* getBlacklists({ BlacklistItemNames: ["192.0.2.1"],});