Struct aws_sdk_sesv2::types::PlacementStatistics
source · #[non_exhaustive]pub struct PlacementStatistics {
pub inbox_percentage: Option<f64>,
pub spam_percentage: Option<f64>,
pub missing_percentage: Option<f64>,
pub spf_percentage: Option<f64>,
pub dkim_percentage: Option<f64>,
}Expand description
An object that contains inbox placement data for an email provider.
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.inbox_percentage: Option<f64>The percentage of emails that arrived in recipients' inboxes during the predictive inbox placement test.
spam_percentage: Option<f64>The percentage of emails that arrived in recipients' spam or junk mail folders during the predictive inbox placement test.
missing_percentage: Option<f64>The percentage of emails that didn't arrive in recipients' inboxes at all during the predictive inbox placement test.
spf_percentage: Option<f64>The percentage of emails that were authenticated by using Sender Policy Framework (SPF) during the predictive inbox placement test.
dkim_percentage: Option<f64>The percentage of emails that were authenticated by using DomainKeys Identified Mail (DKIM) during the predictive inbox placement test.
Implementations§
source§impl PlacementStatistics
impl PlacementStatistics
sourcepub fn inbox_percentage(&self) -> Option<f64>
pub fn inbox_percentage(&self) -> Option<f64>
The percentage of emails that arrived in recipients' inboxes during the predictive inbox placement test.
sourcepub fn spam_percentage(&self) -> Option<f64>
pub fn spam_percentage(&self) -> Option<f64>
The percentage of emails that arrived in recipients' spam or junk mail folders during the predictive inbox placement test.
sourcepub fn missing_percentage(&self) -> Option<f64>
pub fn missing_percentage(&self) -> Option<f64>
The percentage of emails that didn't arrive in recipients' inboxes at all during the predictive inbox placement test.
sourcepub fn spf_percentage(&self) -> Option<f64>
pub fn spf_percentage(&self) -> Option<f64>
The percentage of emails that were authenticated by using Sender Policy Framework (SPF) during the predictive inbox placement test.
sourcepub fn dkim_percentage(&self) -> Option<f64>
pub fn dkim_percentage(&self) -> Option<f64>
The percentage of emails that were authenticated by using DomainKeys Identified Mail (DKIM) during the predictive inbox placement test.
source§impl PlacementStatistics
impl PlacementStatistics
sourcepub fn builder() -> PlacementStatisticsBuilder
pub fn builder() -> PlacementStatisticsBuilder
Creates a new builder-style object to manufacture PlacementStatistics.
Trait Implementations§
source§impl Clone for PlacementStatistics
impl Clone for PlacementStatistics
source§fn clone(&self) -> PlacementStatistics
fn clone(&self) -> PlacementStatistics
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for PlacementStatistics
impl Debug for PlacementStatistics
source§impl PartialEq for PlacementStatistics
impl PartialEq for PlacementStatistics
source§fn eq(&self, other: &PlacementStatistics) -> bool
fn eq(&self, other: &PlacementStatistics) -> bool
self and other values to be equal, and is used
by ==.