SES / Client / delete_receipt_filter

delete_receipt_filter#

SES.Client.delete_receipt_filter(**kwargs)#

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.

See also: AWS API Documentation

Request Syntax

response = client.delete_receipt_filter(
    FilterName='string'
)
Parameters:

FilterName (string) –

[REQUIRED]

The name of the IP address filter to delete.

Return type:

dict

Returns:

Response Syntax

{}

Response Structure

  • (dict) –

    An empty element returned on a successful request.

Examples

The following example deletes an IP address filter:

response = client.delete_receipt_filter(
    FilterName='MyFilter',
)

print(response)

Expected Output:

{
    'ResponseMetadata': {
        '...': '...',
    },
}