Struct aws_sdk_rds::model::Certificate
source · [−]#[non_exhaustive]pub struct Certificate { /* private fields */ }Expand description
A CA certificate for an Amazon Web Services account.
Implementations
sourceimpl Certificate
impl Certificate
sourcepub fn certificate_identifier(&self) -> Option<&str>
pub fn certificate_identifier(&self) -> Option<&str>
The unique key that identifies a certificate.
sourcepub fn certificate_type(&self) -> Option<&str>
pub fn certificate_type(&self) -> Option<&str>
The type of the certificate.
sourcepub fn thumbprint(&self) -> Option<&str>
pub fn thumbprint(&self) -> Option<&str>
The thumbprint of the certificate.
sourcepub fn valid_from(&self) -> Option<&DateTime>
pub fn valid_from(&self) -> Option<&DateTime>
The starting date from which the certificate is valid.
sourcepub fn valid_till(&self) -> Option<&DateTime>
pub fn valid_till(&self) -> Option<&DateTime>
The final date that the certificate continues to be valid.
sourcepub fn certificate_arn(&self) -> Option<&str>
pub fn certificate_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) for the certificate.
sourcepub fn customer_override(&self) -> Option<bool>
pub fn customer_override(&self) -> Option<bool>
Whether there is an override for the default certificate identifier.
sourcepub fn customer_override_valid_till(&self) -> Option<&DateTime>
pub fn customer_override_valid_till(&self) -> Option<&DateTime>
If there is an override for the default certificate identifier, when the override expires.
sourceimpl Certificate
impl Certificate
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture Certificate.
Trait Implementations
sourceimpl Clone for Certificate
impl Clone for Certificate
sourcefn clone(&self) -> Certificate
fn clone(&self) -> Certificate
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for Certificate
impl Debug for Certificate
sourceimpl PartialEq<Certificate> for Certificate
impl PartialEq<Certificate> for Certificate
sourcefn eq(&self, other: &Certificate) -> bool
fn eq(&self, other: &Certificate) -> bool
impl StructuralPartialEq for Certificate
Auto Trait Implementations
impl RefUnwindSafe for Certificate
impl Send for Certificate
impl Sync for Certificate
impl Unpin for Certificate
impl UnwindSafe for Certificate
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more