Skip to content

ListSuppressedDestinations

Source: src/AWS/SES/ListSuppressedDestinations.ts

Runtime binding for sesv2:ListSuppressedDestinations.

Lists the addresses on the account-level suppression list, optionally filtered by reason and date range. Account-level operation. Provide the implementation with Effect.provide(AWS.SES.ListSuppressedDestinationsHttp).

// init — account-level binding, no resource argument
const listSuppressed = yield* SES.ListSuppressedDestinations();
// runtime
const { SuppressedDestinationSummaries } = yield* listSuppressed({
Reasons: ["BOUNCE"],
});