logo
pub struct DomainDeliverabilityCampaign {
Show 14 fields 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>,
}
Expand description

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. Amazon Pinpoint automatically generates and assigns this identifier to a campaign. This value is not the same as the campaign identifier that Amazon Pinpoint assigns to campaigns that you create and manage by using the Amazon Pinpoint API or the Amazon Pinpoint console.

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more