Struct aws_sdk_sesv2::types::DailyVolume
source · #[non_exhaustive]pub struct DailyVolume {
pub start_date: Option<DateTime>,
pub volume_statistics: Option<VolumeStatistics>,
pub domain_isp_placements: Option<Vec<DomainIspPlacement>>,
}Expand description
An object that contains information about the volume of email sent on each day of the analysis period.
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.start_date: Option<DateTime>The date that the DailyVolume metrics apply to, in Unix time.
volume_statistics: Option<VolumeStatistics>An object that contains inbox placement metrics for a specific day in the analysis period.
domain_isp_placements: Option<Vec<DomainIspPlacement>>An object that contains inbox placement metrics for a specified day in the analysis period, broken out by the recipient's email provider.
Implementations§
source§impl DailyVolume
impl DailyVolume
sourcepub fn start_date(&self) -> Option<&DateTime>
pub fn start_date(&self) -> Option<&DateTime>
The date that the DailyVolume metrics apply to, in Unix time.
sourcepub fn volume_statistics(&self) -> Option<&VolumeStatistics>
pub fn volume_statistics(&self) -> Option<&VolumeStatistics>
An object that contains inbox placement metrics for a specific day in the analysis period.
sourcepub fn domain_isp_placements(&self) -> &[DomainIspPlacement]
pub fn domain_isp_placements(&self) -> &[DomainIspPlacement]
An object that contains inbox placement metrics for a specified day in the analysis period, broken out by the recipient's email provider.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .domain_isp_placements.is_none().
source§impl DailyVolume
impl DailyVolume
sourcepub fn builder() -> DailyVolumeBuilder
pub fn builder() -> DailyVolumeBuilder
Creates a new builder-style object to manufacture DailyVolume.
Trait Implementations§
source§impl Clone for DailyVolume
impl Clone for DailyVolume
source§fn clone(&self) -> DailyVolume
fn clone(&self) -> DailyVolume
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DailyVolume
impl Debug for DailyVolume
source§impl PartialEq for DailyVolume
impl PartialEq for DailyVolume
source§fn eq(&self, other: &DailyVolume) -> bool
fn eq(&self, other: &DailyVolume) -> bool
self and other values to be equal, and is used
by ==.