[][src]Struct rusoto_acm::RenewalSummary

pub struct RenewalSummary {
    pub domain_validation_options: Vec<DomainValidation>,
    pub renewal_status: String,
    pub renewal_status_reason: Option<String>,
    pub updated_at: f64,
}

Contains information about the status of ACM's managed renewal for the certificate. This structure exists only when the certificate type is AMAZON_ISSUED.

Fields

domain_validation_options: Vec<DomainValidation>

Contains information about the validation of each domain name in the certificate, as it pertains to ACM's managed renewal. This is different from the initial validation that occurs as a result of the RequestCertificate request. This field exists only when the certificate type is AMAZON_ISSUED.

renewal_status: String

The status of ACM's managed renewal of the certificate.

renewal_status_reason: Option<String>

The reason that a renewal request was unsuccessful.

updated_at: f64

The time at which the renewal summary was last updated.

Trait Implementations

impl Clone for RenewalSummary[src]

impl Debug for RenewalSummary[src]

impl Default for RenewalSummary[src]

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

impl PartialEq<RenewalSummary> for RenewalSummary[src]

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