[−][src]Struct rusoto_ses::IdentityNotificationAttributes 
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.
Fields
bounce_topic: StringThe Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES will publish bounce notifications.
complaint_topic: StringThe Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES will publish complaint notifications.
delivery_topic: StringThe Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES will publish delivery notifications.
forwarding_enabled: boolDescribes 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.
headers_in_bounce_notifications_enabled: Option<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.
headers_in_complaint_notifications_enabled: Option<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.
headers_in_delivery_notifications_enabled: Option<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.
Trait Implementations
impl PartialEq<IdentityNotificationAttributes> for IdentityNotificationAttributes[src]
fn eq(&self, other: &IdentityNotificationAttributes) -> bool[src]
fn ne(&self, other: &IdentityNotificationAttributes) -> bool[src]
impl Default for IdentityNotificationAttributes[src]
impl Clone for IdentityNotificationAttributes[src]
fn clone(&self) -> IdentityNotificationAttributes[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for IdentityNotificationAttributes[src]
Auto Trait Implementations
impl Send for IdentityNotificationAttributes
impl Sync for IdentityNotificationAttributes
Blanket Implementations
impl<T> From for T[src]
impl<T, U> Into for T where
    U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
    T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
    T: From<U>, [src]
T: From<U>,
type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
    T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self