Struct aws_sdk_acm::model::RenewalSummary
source · #[non_exhaustive]pub struct RenewalSummary { /* private fields */ }
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
.
Implementations§
source§impl RenewalSummary
impl RenewalSummary
sourcepub fn renewal_status(&self) -> Option<&RenewalStatus>
pub fn renewal_status(&self) -> Option<&RenewalStatus>
The status of ACM's managed renewal of the certificate.
sourcepub fn domain_validation_options(&self) -> Option<&[DomainValidation]>
pub fn domain_validation_options(&self) -> Option<&[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
.
sourcepub fn renewal_status_reason(&self) -> Option<&FailureReason>
pub fn renewal_status_reason(&self) -> Option<&FailureReason>
The reason that a renewal request was unsuccessful.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The time at which the renewal summary was last updated.
source§impl RenewalSummary
impl RenewalSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RenewalSummary
.
Trait Implementations§
source§impl Clone for RenewalSummary
impl Clone for RenewalSummary
source§fn clone(&self) -> RenewalSummary
fn clone(&self) -> RenewalSummary
Returns a copy 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 PartialEq<RenewalSummary> for RenewalSummary
impl PartialEq<RenewalSummary> for RenewalSummary
source§fn eq(&self, other: &RenewalSummary) -> bool
fn eq(&self, other: &RenewalSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.