[][src]Struct rusoto_docdb::Certificate

pub struct Certificate {
    pub certificate_arn: Option<String>,
    pub certificate_identifier: Option<String>,
    pub certificate_type: Option<String>,
    pub thumbprint: Option<String>,
    pub valid_from: Option<String>,
    pub valid_till: Option<String>,
}

A certificate authority (CA) certificate for an AWS account.

Fields

certificate_arn: Option<String>

The Amazon Resource Name (ARN) for the certificate.

Example: arn:aws:rds:us-east-1::cert:rds-ca-2019

certificate_identifier: Option<String>

The unique key that identifies a certificate.

Example: rds-ca-2019

certificate_type: Option<String>

The type of the certificate.

Example: CA

thumbprint: Option<String>

The thumbprint of the certificate.

valid_from: Option<String>

The starting date-time from which the certificate is valid.

Example: 2019-07-31T17:57:09Z

valid_till: Option<String>

The date-time after which the certificate is no longer valid.

Example: 2024-07-31T17:57:09Z

Trait Implementations

impl Clone for Certificate[src]

impl Debug for Certificate[src]

impl Default for Certificate[src]

impl PartialEq<Certificate> for Certificate[src]

impl StructuralPartialEq for Certificate[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.