Skip to content

Delete Receipt Filter

ses_delete_receipt_filter R Documentation

Deletes the specified IP address filter

Description

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.

Usage

ses_delete_receipt_filter(FilterName)

Arguments

FilterName

[required] The name of the IP address filter to delete.

Value

An empty list.

Request syntax

svc$delete_receipt_filter(
  FilterName = "string"
)

Examples

## Not run: 
# The following example deletes an IP address filter:
svc$delete_receipt_filter(
  FilterName = "MyFilter"
)

## End(Not run)