Struct aws_sdk_ses::types::IdentityNotificationAttributes
source · #[non_exhaustive]pub struct IdentityNotificationAttributes { /* private fields */ }Expand description
Represents the notification attributes of an identity, including whether an identity has Amazon Simple Notification Service (Amazon SNS) topics set for bounce, complaint, and/or delivery notifications, and whether feedback forwarding is enabled for bounce and complaint notifications.
Implementations§
source§impl IdentityNotificationAttributes
impl IdentityNotificationAttributes
sourcepub fn bounce_topic(&self) -> Option<&str>
pub fn bounce_topic(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES will publish bounce notifications.
sourcepub fn complaint_topic(&self) -> Option<&str>
pub fn complaint_topic(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES will publish complaint notifications.
sourcepub fn delivery_topic(&self) -> Option<&str>
pub fn delivery_topic(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES will publish delivery notifications.
sourcepub fn forwarding_enabled(&self) -> bool
pub fn forwarding_enabled(&self) -> bool
Describes whether Amazon SES will forward bounce and complaint notifications as email. true indicates that Amazon SES will forward bounce and complaint notifications as email, while false indicates that bounce and complaint notifications will be published only to the specified bounce and complaint Amazon SNS topics.
sourcepub fn headers_in_bounce_notifications_enabled(&self) -> bool
pub fn headers_in_bounce_notifications_enabled(&self) -> bool
Describes whether Amazon SES includes the original email headers in Amazon SNS notifications of type Bounce. A value of true specifies that Amazon SES will include headers in bounce notifications, and a value of false specifies that Amazon SES will not include headers in bounce notifications.
sourcepub fn headers_in_complaint_notifications_enabled(&self) -> bool
pub fn headers_in_complaint_notifications_enabled(&self) -> bool
Describes whether Amazon SES includes the original email headers in Amazon SNS notifications of type Complaint. A value of true specifies that Amazon SES will include headers in complaint notifications, and a value of false specifies that Amazon SES will not include headers in complaint notifications.
sourcepub fn headers_in_delivery_notifications_enabled(&self) -> bool
pub fn headers_in_delivery_notifications_enabled(&self) -> bool
Describes whether Amazon SES includes the original email headers in Amazon SNS notifications of type Delivery. A value of true specifies that Amazon SES will include headers in delivery notifications, and a value of false specifies that Amazon SES will not include headers in delivery notifications.
source§impl IdentityNotificationAttributes
impl IdentityNotificationAttributes
sourcepub fn builder() -> IdentityNotificationAttributesBuilder
pub fn builder() -> IdentityNotificationAttributesBuilder
Creates a new builder-style object to manufacture IdentityNotificationAttributes.
Trait Implementations§
source§impl Clone for IdentityNotificationAttributes
impl Clone for IdentityNotificationAttributes
source§fn clone(&self) -> IdentityNotificationAttributes
fn clone(&self) -> IdentityNotificationAttributes
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq<IdentityNotificationAttributes> for IdentityNotificationAttributes
impl PartialEq<IdentityNotificationAttributes> for IdentityNotificationAttributes
source§fn eq(&self, other: &IdentityNotificationAttributes) -> bool
fn eq(&self, other: &IdentityNotificationAttributes) -> bool
self and other values to be equal, and is used
by ==.