Struct aws_sdk_sesv2::types::ReputationOptions
source · #[non_exhaustive]pub struct ReputationOptions {
pub reputation_metrics_enabled: bool,
pub last_fresh_start: Option<DateTime>,
}Expand description
Enable or disable collection of reputation metrics for emails that you send using this configuration set in the current Amazon Web Services Region.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.reputation_metrics_enabled: boolIf true, tracking of reputation metrics is enabled for the configuration set. If false, tracking of reputation metrics is disabled for the configuration set.
last_fresh_start: Option<DateTime>The date and time (in Unix time) when the reputation metrics were last given a fresh start. When your account is given a fresh start, your reputation metrics are calculated starting from the date of the fresh start.
Implementations§
source§impl ReputationOptions
impl ReputationOptions
sourcepub fn reputation_metrics_enabled(&self) -> bool
pub fn reputation_metrics_enabled(&self) -> bool
If true, tracking of reputation metrics is enabled for the configuration set. If false, tracking of reputation metrics is disabled for the configuration set.
sourcepub fn last_fresh_start(&self) -> Option<&DateTime>
pub fn last_fresh_start(&self) -> Option<&DateTime>
The date and time (in Unix time) when the reputation metrics were last given a fresh start. When your account is given a fresh start, your reputation metrics are calculated starting from the date of the fresh start.
source§impl ReputationOptions
impl ReputationOptions
sourcepub fn builder() -> ReputationOptionsBuilder
pub fn builder() -> ReputationOptionsBuilder
Creates a new builder-style object to manufacture ReputationOptions.
Trait Implementations§
source§impl Clone for ReputationOptions
impl Clone for ReputationOptions
source§fn clone(&self) -> ReputationOptions
fn clone(&self) -> ReputationOptions
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ReputationOptions
impl Debug for ReputationOptions
source§impl PartialEq for ReputationOptions
impl PartialEq for ReputationOptions
source§fn eq(&self, other: &ReputationOptions) -> bool
fn eq(&self, other: &ReputationOptions) -> bool
self and other values to be equal, and is used
by ==.