[][src]Struct rusoto_sesv2::DomainDeliverabilityCampaign

pub struct DomainDeliverabilityCampaign {
    pub campaign_id: Option<String>,
    pub delete_rate: Option<f64>,
    pub esps: Option<Vec<String>>,
    pub first_seen_date_time: Option<f64>,
    pub from_address: Option<String>,
    pub image_url: Option<String>,
    pub inbox_count: Option<i64>,
    pub last_seen_date_time: Option<f64>,
    pub projected_volume: Option<i64>,
    pub read_delete_rate: Option<f64>,
    pub read_rate: Option<f64>,
    pub sending_ips: Option<Vec<String>>,
    pub spam_count: Option<i64>,
    pub subject: Option<String>,
}

An object that contains the deliverability data for a specific campaign. This data is available for a campaign only if the campaign sent email by using a domain that the Deliverability dashboard is enabled for (PutDeliverabilityDashboardOption operation).

Fields

campaign_id: Option<String>

The unique identifier for the campaign. The Deliverability dashboard automatically generates and assigns this identifier to a campaign.

delete_rate: Option<f64>

The percentage of email messages that were deleted by recipients, without being opened first. Due to technical limitations, this value only includes recipients who opened the message by using an email client that supports images.

esps: Option<Vec<String>>

The major email providers who handled the email message.

first_seen_date_time: Option<f64>

The first time, in Unix time format, when the email message was delivered to any recipient's inbox. This value can help you determine how long it took for a campaign to deliver an email message.

from_address: Option<String>

The verified email address that the email message was sent from.

image_url: Option<String>

The URL of an image that contains a snapshot of the email message that was sent.

inbox_count: Option<i64>

The number of email messages that were delivered to recipients’ inboxes.

last_seen_date_time: Option<f64>

The last time, in Unix time format, when the email message was delivered to any recipient's inbox. This value can help you determine how long it took for a campaign to deliver an email message.

projected_volume: Option<i64>

The projected number of recipients that the email message was sent to.

read_delete_rate: Option<f64>

The percentage of email messages that were opened and then deleted by recipients. Due to technical limitations, this value only includes recipients who opened the message by using an email client that supports images.

read_rate: Option<f64>

The percentage of email messages that were opened by recipients. Due to technical limitations, this value only includes recipients who opened the message by using an email client that supports images.

sending_ips: Option<Vec<String>>

The IP addresses that were used to send the email message.

spam_count: Option<i64>

The number of email messages that were delivered to recipients' spam or junk mail folders.

subject: Option<String>

The subject line, or title, of the email message.

Trait Implementations

impl Clone for DomainDeliverabilityCampaign[src]

impl Debug for DomainDeliverabilityCampaign[src]

impl Default for DomainDeliverabilityCampaign[src]

impl<'de> Deserialize<'de> for DomainDeliverabilityCampaign[src]

impl PartialEq<DomainDeliverabilityCampaign> for DomainDeliverabilityCampaign[src]

impl StructuralPartialEq for DomainDeliverabilityCampaign[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.