Jump to Content

Class DeleteReceiptFilterCommandProtected

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.

import { SESClient, DeleteReceiptFilterCommand } from "@aws-sdk/client-ses"; // ES Modules import
// const { SESClient, DeleteReceiptFilterCommand } = require("@aws-sdk/client-ses"); // CommonJS import
const client = new SESClient(config);
const command = new DeleteReceiptFilterCommand(input);
const response = await client.send(command);

Param

DeleteReceiptFilterCommandInput

Returns

DeleteReceiptFilterCommandOutput

See

Example

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

Hierarchy

Constructors

Properties

Methods