[][src]Struct rusoto_sesv2::DomainDeliverabilityTrackingOption

pub struct DomainDeliverabilityTrackingOption {
    pub domain: Option<String>,
    pub inbox_placement_tracking_option: Option<InboxPlacementTrackingOption>,
    pub subscription_start_date: Option<f64>,
}

An object that contains information about the Deliverability dashboard subscription for a verified domain that you use to send email and currently has an active Deliverability dashboard subscription. If a Deliverability dashboard subscription is active for a domain, you gain access to reputation, inbox placement, and other metrics for the domain.

Fields

domain: Option<String>

A verified domain that’s associated with your AWS account and currently has an active Deliverability dashboard subscription.

inbox_placement_tracking_option: Option<InboxPlacementTrackingOption>

An object that contains information about the inbox placement data settings for the domain.

subscription_start_date: Option<f64>

The date, in Unix time format, when you enabled the Deliverability dashboard for the domain.

Trait Implementations

impl Clone for DomainDeliverabilityTrackingOption[src]

impl Debug for DomainDeliverabilityTrackingOption[src]

impl Default for DomainDeliverabilityTrackingOption[src]

impl<'de> Deserialize<'de> for DomainDeliverabilityTrackingOption[src]

impl PartialEq<DomainDeliverabilityTrackingOption> for DomainDeliverabilityTrackingOption[src]

impl Serialize for DomainDeliverabilityTrackingOption[src]

impl StructuralPartialEq for DomainDeliverabilityTrackingOption[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.