DeleteSuppressedDestination not available on package @aws-sdk/client-ses #5100
-
I need to delete individual addresses from my suppression list. AWS docs shows the DeleteSuppressedDestination as the command to do it, but it is not available on on package. How could I do it within a JavaScript setup? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @vitorbertolucci , The docs you linked is for the SESv2 API. So you'll have to install and import the SESv2 client for it: Thanks, |
Beta Was this translation helpful? Give feedback.
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
Hi @vitorbertolucci ,
The docs you linked is for the SESv2 API. So you'll have to install and import the SESv2 client for it:
import { DeleteSuppressedDestinationCommand, SESv2Client } from "@aws-sdk/client-sesv2";
Thanks,
Ran~