[][src]Struct rusoto_iam::ServerCertificate

pub struct ServerCertificate {
    pub certificate_body: String,
    pub certificate_chain: Option<String>,
    pub server_certificate_metadata: ServerCertificateMetadata,
}

Contains information about a server certificate.

This data type is used as a response element in the GetServerCertificate operation.

Fields

certificate_body: String

The contents of the public key certificate.

certificate_chain: Option<String>

The contents of the public key certificate chain.

server_certificate_metadata: ServerCertificateMetadata

The meta information of the server certificate, such as its name, path, ID, and ARN.

Trait Implementations

impl Clone for ServerCertificate[src]

impl Debug for ServerCertificate[src]

impl Default for ServerCertificate[src]

impl PartialEq<ServerCertificate> for ServerCertificate[src]

impl StructuralPartialEq for ServerCertificate[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.