[][src]Struct rusoto_cloudhsmv2::Certificates

pub struct Certificates {
    pub aws_hardware_certificate: Option<String>,
    pub cluster_certificate: Option<String>,
    pub cluster_csr: Option<String>,
    pub hsm_certificate: Option<String>,
    pub manufacturer_hardware_certificate: Option<String>,
}

Contains one or more certificates or a certificate signing request (CSR).

Fields

aws_hardware_certificate: Option<String>

The HSM hardware certificate issued (signed) by AWS CloudHSM.

cluster_certificate: Option<String>

The cluster certificate issued (signed) by the issuing certificate authority (CA) of the cluster's owner.

cluster_csr: Option<String>

The cluster's certificate signing request (CSR). The CSR exists only when the cluster's state is UNINITIALIZED.

hsm_certificate: Option<String>

The HSM certificate issued (signed) by the HSM hardware.

manufacturer_hardware_certificate: Option<String>

The HSM hardware certificate issued (signed) by the hardware manufacturer.

Trait Implementations

impl Clone for Certificates[src]

impl Debug for Certificates[src]

impl Default for Certificates[src]

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

impl PartialEq<Certificates> for Certificates[src]

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