Struct aws_sdk_iot::types::OutgoingCertificate
source · #[non_exhaustive]pub struct OutgoingCertificate {
pub certificate_arn: Option<String>,
pub certificate_id: Option<String>,
pub transferred_to: Option<String>,
pub transfer_date: Option<DateTime>,
pub transfer_message: Option<String>,
pub creation_date: Option<DateTime>,
}
Expand description
A certificate that has been transferred but not yet accepted.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.certificate_arn: Option<String>
The certificate ARN.
certificate_id: Option<String>
The certificate ID.
transferred_to: Option<String>
The Amazon Web Services account to which the transfer was made.
transfer_date: Option<DateTime>
The date the transfer was initiated.
transfer_message: Option<String>
The transfer message.
creation_date: Option<DateTime>
The certificate creation date.
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 for OutgoingCertificate
impl PartialEq 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 ==
.impl StructuralPartialEq for OutgoingCertificate
Auto Trait Implementations§
impl RefUnwindSafe for OutgoingCertificate
impl Send for OutgoingCertificate
impl Sync for OutgoingCertificate
impl Unpin for OutgoingCertificate
impl UnwindSafe for OutgoingCertificate
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.