pub struct RenewalSummary {
pub domain_validation_options: Vec<DomainValidation>,
pub renewal_status: String,
pub renewal_status_reason: Option<String>,
pub updated_at: f64,
}
Expand description
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§
Source§impl Clone for RenewalSummary
impl Clone for RenewalSummary
Source§fn clone(&self) -> RenewalSummary
fn clone(&self) -> RenewalSummary
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RenewalSummary
impl Debug for RenewalSummary
Source§impl Default for RenewalSummary
impl Default for RenewalSummary
Source§fn default() -> RenewalSummary
fn default() -> RenewalSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RenewalSummary
impl<'de> Deserialize<'de> for RenewalSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RenewalSummary
impl PartialEq for RenewalSummary
impl StructuralPartialEq for RenewalSummary
Auto Trait Implementations§
impl Freeze for RenewalSummary
impl RefUnwindSafe for RenewalSummary
impl Send for RenewalSummary
impl Sync for RenewalSummary
impl Unpin for RenewalSummary
impl UnwindSafe for RenewalSummary
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more