[][src]Struct rusoto_ds::CertificateInfo

pub struct CertificateInfo {
    pub certificate_id: Option<String>,
    pub common_name: Option<String>,
    pub expiry_date_time: Option<f64>,
    pub state: Option<String>,
    pub type_: Option<String>,
}

Contains general information about a certificate.

Fields

certificate_id: Option<String>

The identifier of the certificate.

common_name: Option<String>

The common name for the certificate.

expiry_date_time: Option<f64>

The date and time when the certificate will expire.

state: Option<String>

The state of the certificate.

type_: Option<String>

The function that the registered certificate performs. Valid values include ClientLDAPS or ClientCertAuth. The default value is ClientLDAPS.

Trait Implementations

impl Clone for CertificateInfo[src]

impl Debug for CertificateInfo[src]

impl Default for CertificateInfo[src]

impl<'de> Deserialize<'de> for CertificateInfo[src]

impl PartialEq<CertificateInfo> for CertificateInfo[src]

impl StructuralPartialEq for CertificateInfo[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.