[][src]Struct rusoto_sesv2::PutDeliverabilityDashboardOptionRequest

pub struct PutDeliverabilityDashboardOptionRequest {
    pub dashboard_enabled: bool,
    pub subscribed_domains: Option<Vec<DomainDeliverabilityTrackingOption>>,
}

Enable or disable the Deliverability dashboard. When you enable the Deliverability dashboard, you gain access to reputation, deliverability, and other metrics for the domains that you use to send email using Amazon SES API v2. You also gain the ability to perform predictive inbox placement tests.

When you use the Deliverability dashboard, you pay a monthly subscription charge, in addition to any other fees that you accrue by using Amazon SES and other AWS services. For more information about the features and cost of a Deliverability dashboard subscription, see Amazon Pinpoint Pricing.

Fields

dashboard_enabled: bool

Specifies whether to enable the Deliverability dashboard. To enable the dashboard, set this value to true.

subscribed_domains: Option<Vec<DomainDeliverabilityTrackingOption>>

An array of objects, one for each verified domain that you use to send email and enabled the Deliverability dashboard for.

Trait Implementations

impl Clone for PutDeliverabilityDashboardOptionRequest[src]

impl Debug for PutDeliverabilityDashboardOptionRequest[src]

impl Default for PutDeliverabilityDashboardOptionRequest[src]

impl PartialEq<PutDeliverabilityDashboardOptionRequest> for PutDeliverabilityDashboardOptionRequest[src]

impl Serialize for PutDeliverabilityDashboardOptionRequest[src]

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