Struct aws_sdk_ses::model::ReceiptIpFilter
source · #[non_exhaustive]pub struct ReceiptIpFilter { /* private fields */ }
Expand description
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.
Implementations§
source§impl ReceiptIpFilter
impl ReceiptIpFilter
sourcepub fn policy(&self) -> Option<&ReceiptFilterPolicy>
pub fn policy(&self) -> Option<&ReceiptFilterPolicy>
Indicates whether to block or allow incoming mail from the specified IP addresses.
sourcepub fn cidr(&self) -> Option<&str>
pub fn cidr(&self) -> Option<&str>
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.
source§impl ReceiptIpFilter
impl ReceiptIpFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ReceiptIpFilter
.
Trait Implementations§
source§impl Clone for ReceiptIpFilter
impl Clone for ReceiptIpFilter
source§fn clone(&self) -> ReceiptIpFilter
fn clone(&self) -> ReceiptIpFilter
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ReceiptIpFilter
impl Debug for ReceiptIpFilter
source§impl PartialEq<ReceiptIpFilter> for ReceiptIpFilter
impl PartialEq<ReceiptIpFilter> for ReceiptIpFilter
source§fn eq(&self, other: &ReceiptIpFilter) -> bool
fn eq(&self, other: &ReceiptIpFilter) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.