Struct aws_sdk_iot::types::ServerCertificateSummary
source · #[non_exhaustive]pub struct ServerCertificateSummary {
pub server_certificate_arn: Option<String>,
pub server_certificate_status: Option<ServerCertificateStatus>,
pub server_certificate_status_detail: Option<String>,
}Expand description
An object that contains information about a server certificate.
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.server_certificate_arn: Option<String>The ARN of the server certificate.
server_certificate_status: Option<ServerCertificateStatus>The status of the server certificate.
server_certificate_status_detail: Option<String>Details that explain the status of the server certificate.
Implementations§
source§impl ServerCertificateSummary
impl ServerCertificateSummary
sourcepub fn server_certificate_arn(&self) -> Option<&str>
pub fn server_certificate_arn(&self) -> Option<&str>
The ARN of the server certificate.
sourcepub fn server_certificate_status(&self) -> Option<&ServerCertificateStatus>
pub fn server_certificate_status(&self) -> Option<&ServerCertificateStatus>
The status of the server certificate.
sourcepub fn server_certificate_status_detail(&self) -> Option<&str>
pub fn server_certificate_status_detail(&self) -> Option<&str>
Details that explain the status of the server certificate.
source§impl ServerCertificateSummary
impl ServerCertificateSummary
sourcepub fn builder() -> ServerCertificateSummaryBuilder
pub fn builder() -> ServerCertificateSummaryBuilder
Creates a new builder-style object to manufacture ServerCertificateSummary.
Trait Implementations§
source§impl Clone for ServerCertificateSummary
impl Clone for ServerCertificateSummary
source§fn clone(&self) -> ServerCertificateSummary
fn clone(&self) -> ServerCertificateSummary
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 ServerCertificateSummary
impl Debug for ServerCertificateSummary
source§impl PartialEq<ServerCertificateSummary> for ServerCertificateSummary
impl PartialEq<ServerCertificateSummary> for ServerCertificateSummary
source§fn eq(&self, other: &ServerCertificateSummary) -> bool
fn eq(&self, other: &ServerCertificateSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ServerCertificateSummary
Auto Trait Implementations§
impl RefUnwindSafe for ServerCertificateSummary
impl Send for ServerCertificateSummary
impl Sync for ServerCertificateSummary
impl Unpin for ServerCertificateSummary
impl UnwindSafe for ServerCertificateSummary
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