Struct rusoto_ses::ReceiptIpFilter[][src]

pub struct ReceiptIpFilter {
    pub cidr: String,
    pub policy: 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 single IP address or a range of IP addresses that you want to block or allow, specified in Classless Inter-Domain Routing (CIDR) notation. An example of a single email address is 10.0.0.1. An example of a range of IP addresses is 10.0.0.1/24. For more information about CIDR notation, see RFC 2317.

Indicates whether to block or allow incoming mail from the specified IP addresses.

Trait Implementations

impl Default for ReceiptIpFilter
[src]

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

impl Debug for ReceiptIpFilter
[src]

Formats the value using the given formatter. Read more

impl Clone for ReceiptIpFilter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ReceiptIpFilter
[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