[][src]Struct rusoto_sesv2::GetDeliverabilityDashboardOptionsResponse

pub struct GetDeliverabilityDashboardOptionsResponse {
    pub account_status: Option<String>,
    pub active_subscribed_domains: Option<Vec<DomainDeliverabilityTrackingOption>>,
    pub dashboard_enabled: bool,
    pub pending_expiration_subscribed_domains: Option<Vec<DomainDeliverabilityTrackingOption>>,
    pub subscription_expiry_date: Option<f64>,
}

An object that shows the status of the Deliverability dashboard.

Fields

account_status: Option<String>

The current status of your Deliverability dashboard subscription. If this value is PENDING_EXPIRATION, your subscription is scheduled to expire at the end of the current calendar month.

active_subscribed_domains: Option<Vec<DomainDeliverabilityTrackingOption>>

An array of objects, one for each verified domain that you use to send email and currently has an active Deliverability dashboard subscription that isn’t scheduled to expire at the end of the current calendar month.

dashboard_enabled: bool

Specifies whether the Deliverability dashboard is enabled. If this value is true, the dashboard is enabled.

pending_expiration_subscribed_domains: Option<Vec<DomainDeliverabilityTrackingOption>>

An array of objects, one for each verified domain that you use to send email and currently has an active Deliverability dashboard subscription that's scheduled to expire at the end of the current calendar month.

subscription_expiry_date: Option<f64>

The date, in Unix time format, when your current subscription to the Deliverability dashboard is scheduled to expire, if your subscription is scheduled to expire at the end of the current calendar month. This value is null if you have an active subscription that isn’t due to expire at the end of the month.

Trait Implementations

impl Clone for GetDeliverabilityDashboardOptionsResponse[src]

impl Debug for GetDeliverabilityDashboardOptionsResponse[src]

impl Default for GetDeliverabilityDashboardOptionsResponse[src]

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

impl PartialEq<GetDeliverabilityDashboardOptionsResponse> for GetDeliverabilityDashboardOptionsResponse[src]

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