[][src]Struct rusoto_sesv2::CreateDeliverabilityTestReportRequest

pub struct CreateDeliverabilityTestReportRequest {
    pub content: EmailContent,
    pub from_email_address: String,
    pub report_name: Option<String>,
    pub tags: Option<Vec<Tag>>,
}

A request to perform a predictive inbox placement test. Predictive inbox placement tests can help you predict how your messages will be handled by various email providers around the world. When you perform a predictive inbox placement test, you provide a sample message that contains the content that you plan to send to your customers. We send that message to special email addresses spread across several major email providers around the world. The test takes about 24 hours to complete. When the test is complete, you can use the GetDeliverabilityTestReport operation to view the results of the test.

Fields

content: EmailContent

The HTML body of the message that you sent when you performed the predictive inbox placement test.

from_email_address: String

The email address that the predictive inbox placement test email was sent from.

report_name: Option<String>

A unique name that helps you to identify the predictive inbox placement test when you retrieve the results.

tags: Option<Vec<Tag>>

An array of objects that define the tags (keys and values) that you want to associate with the predictive inbox placement test.

Trait Implementations

impl Clone for CreateDeliverabilityTestReportRequest[src]

impl Debug for CreateDeliverabilityTestReportRequest[src]

impl Default for CreateDeliverabilityTestReportRequest[src]

impl PartialEq<CreateDeliverabilityTestReportRequest> for CreateDeliverabilityTestReportRequest[src]

impl Serialize for CreateDeliverabilityTestReportRequest[src]

impl StructuralPartialEq for CreateDeliverabilityTestReportRequest[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> 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.