Protected
Deletes the specified IP address filter.
For information about managing IP address filters, see the Amazon SES Developer Guide.
You can execute this operation no more than once per second.
Use a bare-bones client and the command you need to make an API call.
import { SESClient, DeleteReceiptFilterCommand } from "@aws-sdk/client-ses"; // ES Modules import// const { SESClient, DeleteReceiptFilterCommand } = require("@aws-sdk/client-ses"); // CommonJS importconst client = new SESClient(config);const command = new DeleteReceiptFilterCommand(input);const response = await client.send(command);
DeleteReceiptFilterCommandInput
DeleteReceiptFilterCommandOutput
input
response
config
DeleteReceiptFilter
// The following example deletes an IP address filter:const input = { "FilterName": "MyFilter"};const command = new DeleteReceiptFilterCommand(input);await client.send(command);// example id: deletereceiptfilter-1469055456835
Readonly
Static
Deletes the specified IP address filter.
For information about managing IP address filters, see the Amazon SES Developer Guide.
You can execute this operation no more than once per second.
Example
Use a bare-bones client and the command you need to make an API call.
Param
DeleteReceiptFilterCommandInput
Returns
DeleteReceiptFilterCommandOutput
See
input
shape.response
shape.config
shape.Example
DeleteReceiptFilter