[][src]Struct rusoto_rds::Certificate

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

A CA certificate for an AWS account.

Fields

certificate_arn: Option<String>

The Amazon Resource Name (ARN) for the certificate.

certificate_identifier: Option<String>

The unique key that identifies a certificate.

certificate_type: Option<String>

The type of the certificate.

customer_override: Option<bool>

Whether there is an override for the default certificate identifier.

customer_override_valid_till: Option<String>

If there is an override for the default certificate identifier, when the override expires.

thumbprint: Option<String>

The thumbprint of the certificate.

valid_from: Option<String>

The starting date from which the certificate is valid.

valid_till: Option<String>

The final date that the certificate continues to be valid.

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, 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.