Skip to content

List Receipt Filters

ses_list_receipt_filters R Documentation

Lists the IP address filters associated with your Amazon Web Services account in the current Amazon Web Services Region

Description

Lists the IP address filters associated with your Amazon Web Services account in the current Amazon Web Services Region.

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_list_receipt_filters()

Value

A list with the following syntax:

list(
  Filters = list(
    list(
      Name = "string",
      IpFilter = list(
        Policy = "Block"|"Allow",
        Cidr = "string"
      )
    )
  )
)

Request syntax

svc$list_receipt_filters()

Examples

## Not run: 
# The following example lists the IP address filters that are associated
# with an AWS account:
svc$list_receipt_filters()

## End(Not run)