Struct aws_sdk_iam::model::ServerCertificate
source · [−]#[non_exhaustive]pub struct ServerCertificate {
pub server_certificate_metadata: Option<ServerCertificateMetadata>,
pub certificate_body: Option<String>,
pub certificate_chain: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Contains information about a server certificate.
This data type is used as a response element in the GetServerCertificate
operation.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.server_certificate_metadata: Option<ServerCertificateMetadata>
The meta information of the server certificate, such as its name, path, ID, and ARN.
certificate_body: Option<String>
The contents of the public key certificate.
certificate_chain: Option<String>
The contents of the public key certificate chain.
A list of tags that are attached to the server certificate. For more information about tagging, see Tagging IAM resources in the IAM User Guide.
Implementations
sourceimpl ServerCertificate
impl ServerCertificate
sourcepub fn server_certificate_metadata(&self) -> Option<&ServerCertificateMetadata>
pub fn server_certificate_metadata(&self) -> Option<&ServerCertificateMetadata>
The meta information of the server certificate, such as its name, path, ID, and ARN.
sourcepub fn certificate_body(&self) -> Option<&str>
pub fn certificate_body(&self) -> Option<&str>
The contents of the public key certificate.
sourcepub fn certificate_chain(&self) -> Option<&str>
pub fn certificate_chain(&self) -> Option<&str>
The contents of the public key certificate chain.
A list of tags that are attached to the server certificate. For more information about tagging, see Tagging IAM resources in the IAM User Guide.
sourceimpl ServerCertificate
impl ServerCertificate
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ServerCertificate
Trait Implementations
sourceimpl Clone for ServerCertificate
impl Clone for ServerCertificate
sourcefn clone(&self) -> ServerCertificate
fn clone(&self) -> ServerCertificate
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 more
sourceimpl Debug for ServerCertificate
impl Debug for ServerCertificate
sourceimpl PartialEq<ServerCertificate> for ServerCertificate
impl PartialEq<ServerCertificate> for ServerCertificate
sourcefn eq(&self, other: &ServerCertificate) -> bool
fn eq(&self, other: &ServerCertificate) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ServerCertificate) -> bool
fn ne(&self, other: &ServerCertificate) -> bool
This method tests for !=
.
impl StructuralPartialEq for ServerCertificate
Auto Trait Implementations
impl RefUnwindSafe for ServerCertificate
impl Send for ServerCertificate
impl Sync for ServerCertificate
impl Unpin for ServerCertificate
impl UnwindSafe for ServerCertificate
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more