AWSSESReceiptFilter

Objective-C

@interface AWSSESReceiptFilter

Swift

class AWSSESReceiptFilter

A receipt IP address filter enables you to specify whether to accept or reject mail originating from an IP address or range of IP addresses.

For information about setting up IP address filters, see the Amazon SES Developer Guide.

Required parameters: [Name, IpFilter]

  • A structure that provides the IP addresses to block or allow, and whether to block or allow incoming mail from them.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSSESReceiptIpFilter *_Nullable ipFilter;

    Swift

    var ipFilter: AWSSESReceiptIpFilter? { get set }
  • The name of the IP address filter. The name must meet the following requirements:

    • Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).

    • Start and end with a letter or number.

    • Contain 64 characters or fewer.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable name;

    Swift

    var name: String? { get set }