[][src]Struct rusoto_iam::SigningCertificate

pub struct SigningCertificate {
    pub certificate_body: String,
    pub certificate_id: String,
    pub status: String,
    pub upload_date: Option<String>,
    pub user_name: String,
}

Contains information about an X.509 signing certificate.

This data type is used as a response element in the UploadSigningCertificate and ListSigningCertificates operations.

Fields

certificate_body: String

The contents of the signing certificate.

certificate_id: String

The ID for the signing certificate.

status: String

The status of the signing certificate. Active means that the key is valid for API calls, while Inactive means it is not.

upload_date: Option<String>

The date when the signing certificate was uploaded.

user_name: String

The name of the user the signing certificate is associated with.

Trait Implementations

impl Clone for SigningCertificate[src]

impl Debug for SigningCertificate[src]

impl Default for SigningCertificate[src]

impl PartialEq<SigningCertificate> for SigningCertificate[src]

impl StructuralPartialEq for SigningCertificate[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> Instrument for T[src]

impl<T> Instrument 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.