#[non_exhaustive]
pub struct DomainDeliverabilityCampaign {
Show 14 fields pub campaign_id: Option<String>, pub image_url: Option<String>, pub subject: Option<String>, pub from_address: Option<String>, pub sending_ips: Option<Vec<String>>, pub first_seen_date_time: Option<DateTime>, pub last_seen_date_time: Option<DateTime>, pub inbox_count: Option<i64>, pub spam_count: Option<i64>, pub read_rate: Option<f64>, pub delete_rate: Option<f64>, pub read_delete_rate: Option<f64>, pub projected_volume: Option<i64>, pub esps: Option<Vec<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 (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
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.

image_url: Option<String>

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

subject: Option<String>

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

from_address: Option<String>

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

sending_ips: Option<Vec<String>>

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

first_seen_date_time: Option<DateTime>

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.

last_seen_date_time: Option<DateTime>

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.

inbox_count: Option<i64>

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

spam_count: Option<i64>

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

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.

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.

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.

projected_volume: Option<i64>

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

esps: Option<Vec<String>>

The major email providers who handled the email message.

Implementations

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.

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

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

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

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

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.

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.

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

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

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.

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.

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.

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

The major email providers who handled the email message.

Creates a new builder-style object to manufacture DomainDeliverabilityCampaign

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

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

Performs the conversion.

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

Performs the conversion.

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