Struct rusoto_ses::ReceiptFilter[][src]

pub struct ReceiptFilter {
    pub ip_filter: ReceiptIpFilter,
    pub name: String,
}

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.

Fields

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

The name of the IP address filter. The name must:

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

  • Start and end with a letter or number.

  • Contain less than 64 characters.

Trait Implementations

impl Default for ReceiptFilter
[src]

Returns the "default value" for a type. Read more

impl Debug for ReceiptFilter
[src]

Formats the value using the given formatter. Read more

impl Clone for ReceiptFilter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ReceiptFilter
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations