PutSuppressedDestination
Source:
src/AWS/SES/PutSuppressedDestination.ts
Runtime binding for sesv2:PutSuppressedDestination.
Adds an email address to the account-level suppression list — the
data-plane half of bounce/complaint handling: consume feedback events and
suppress the offending address so SES never attempts it again.
Account-level operation. Provide the implementation with
Effect.provide(AWS.SES.PutSuppressedDestinationHttp).
Suppression List
Section titled “Suppression List”// init — account-level binding, no resource argumentconst suppress = yield* SES.PutSuppressedDestination();
// runtimeyield* suppress({ EmailAddress: "bouncing@example.com", Reason: "BOUNCE",});