Struct aws_sdk_iot::types::OutgoingCertificate
source · #[non_exhaustive]pub struct OutgoingCertificate { /* private fields */ }
Expand description
A certificate that has been transferred but not yet accepted.
Implementations§
source§impl OutgoingCertificate
impl OutgoingCertificate
sourcepub fn certificate_arn(&self) -> Option<&str>
pub fn certificate_arn(&self) -> Option<&str>
The certificate ARN.
sourcepub fn certificate_id(&self) -> Option<&str>
pub fn certificate_id(&self) -> Option<&str>
The certificate ID.
sourcepub fn transferred_to(&self) -> Option<&str>
pub fn transferred_to(&self) -> Option<&str>
The Amazon Web Services account to which the transfer was made.
sourcepub fn transfer_date(&self) -> Option<&DateTime>
pub fn transfer_date(&self) -> Option<&DateTime>
The date the transfer was initiated.
sourcepub fn transfer_message(&self) -> Option<&str>
pub fn transfer_message(&self) -> Option<&str>
The transfer message.
sourcepub fn creation_date(&self) -> Option<&DateTime>
pub fn creation_date(&self) -> Option<&DateTime>
The certificate creation date.
source§impl OutgoingCertificate
impl OutgoingCertificate
sourcepub fn builder() -> OutgoingCertificateBuilder
pub fn builder() -> OutgoingCertificateBuilder
Creates a new builder-style object to manufacture OutgoingCertificate
.
Trait Implementations§
source§impl Clone for OutgoingCertificate
impl Clone for OutgoingCertificate
source§fn clone(&self) -> OutgoingCertificate
fn clone(&self) -> OutgoingCertificate
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 OutgoingCertificate
impl Debug for OutgoingCertificate
source§impl PartialEq<OutgoingCertificate> for OutgoingCertificate
impl PartialEq<OutgoingCertificate> for OutgoingCertificate
source§fn eq(&self, other: &OutgoingCertificate) -> bool
fn eq(&self, other: &OutgoingCertificate) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.