[][src]Struct rusoto_sesv2::ListDomainDeliverabilityCampaignsRequest

pub struct ListDomainDeliverabilityCampaignsRequest {
    pub end_date: f64,
    pub next_token: Option<String>,
    pub page_size: Option<i64>,
    pub start_date: f64,
    pub subscribed_domain: String,
}

Retrieve deliverability data for all the campaigns that used a specific domain to send email during a specified time range. This data is available for a domain only if you enabled the Deliverability dashboard.

Fields

end_date: f64

The last day, in Unix time format, that you want to obtain deliverability data for. This value has to be less than or equal to 30 days after the value of the StartDate parameter.

next_token: Option<String>

A token that’s returned from a previous call to the ListDomainDeliverabilityCampaigns operation. This token indicates the position of a campaign in the list of campaigns.

page_size: Option<i64>

The maximum number of results to include in response to a single call to the ListDomainDeliverabilityCampaigns operation. If the number of results is larger than the number that you specify in this parameter, the response includes a NextToken element, which you can use to obtain additional results.

start_date: f64

The first day, in Unix time format, that you want to obtain deliverability data for.

subscribed_domain: String

The domain to obtain deliverability data for.

Trait Implementations

impl Clone for ListDomainDeliverabilityCampaignsRequest[src]

impl Debug for ListDomainDeliverabilityCampaignsRequest[src]

impl Default for ListDomainDeliverabilityCampaignsRequest[src]

impl PartialEq<ListDomainDeliverabilityCampaignsRequest> for ListDomainDeliverabilityCampaignsRequest[src]

impl Serialize for ListDomainDeliverabilityCampaignsRequest[src]

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