Struct aws_sdk_sesv2::types::SuppressedDestination
source · #[non_exhaustive]pub struct SuppressedDestination { /* private fields */ }Expand description
An object that contains information about an email address that is on the suppression list for your account.
Implementations§
source§impl SuppressedDestination
impl SuppressedDestination
sourcepub fn email_address(&self) -> Option<&str>
pub fn email_address(&self) -> Option<&str>
The email address that is on the suppression list for your account.
sourcepub fn reason(&self) -> Option<&SuppressionListReason>
pub fn reason(&self) -> Option<&SuppressionListReason>
The reason that the address was added to the suppression list for your account.
sourcepub fn last_update_time(&self) -> Option<&DateTime>
pub fn last_update_time(&self) -> Option<&DateTime>
The date and time when the suppressed destination was last updated, shown in Unix time format.
sourcepub fn attributes(&self) -> Option<&SuppressedDestinationAttributes>
pub fn attributes(&self) -> Option<&SuppressedDestinationAttributes>
An optional value that can contain additional information about the reasons that the address was added to the suppression list for your account.
source§impl SuppressedDestination
impl SuppressedDestination
sourcepub fn builder() -> SuppressedDestinationBuilder
pub fn builder() -> SuppressedDestinationBuilder
Creates a new builder-style object to manufacture SuppressedDestination.
Trait Implementations§
source§impl Clone for SuppressedDestination
impl Clone for SuppressedDestination
source§fn clone(&self) -> SuppressedDestination
fn clone(&self) -> SuppressedDestination
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 SuppressedDestination
impl Debug for SuppressedDestination
source§impl PartialEq<SuppressedDestination> for SuppressedDestination
impl PartialEq<SuppressedDestination> for SuppressedDestination
source§fn eq(&self, other: &SuppressedDestination) -> bool
fn eq(&self, other: &SuppressedDestination) -> bool
This method tests for
self and other values to be equal, and is used
by ==.