[][src]Struct rusoto_ds::Certificate

pub struct Certificate {
    pub certificate_id: Option<String>,
    pub client_cert_auth_settings: Option<ClientCertAuthSettings>,
    pub common_name: Option<String>,
    pub expiry_date_time: Option<f64>,
    pub registered_date_time: Option<f64>,
    pub state: Option<String>,
    pub state_reason: Option<String>,
    pub type_: Option<String>,
}

Information about the certificate.

Fields

certificate_id: Option<String>

The identifier of the certificate.

client_cert_auth_settings: Option<ClientCertAuthSettings>

A ClientCertAuthSettings object that contains client certificate authentication settings.

common_name: Option<String>

The common name for the certificate.

expiry_date_time: Option<f64>

The date and time when the certificate will expire.

registered_date_time: Option<f64>

The date and time that the certificate was registered.

state: Option<String>

The state of the certificate.

state_reason: Option<String>

Describes a state change for 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 Certificate[src]

impl Debug for Certificate[src]

impl Default for Certificate[src]

impl<'de> Deserialize<'de> 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> 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.