[][src]Struct rusoto_iot::RegisterCACertificateRequest

pub struct RegisterCACertificateRequest {
    pub allow_auto_registration: Option<bool>,
    pub ca_certificate: String,
    pub registration_config: Option<RegistrationConfig>,
    pub set_as_active: Option<bool>,
    pub verification_certificate: String,
}

The input to the RegisterCACertificate operation.

Fields

allow_auto_registration: Option<bool>

Allows this CA certificate to be used for auto registration of device certificates.

ca_certificate: String

The CA certificate.

registration_config: Option<RegistrationConfig>

Information about the registration configuration.

set_as_active: Option<bool>

A boolean value that specifies if the CA certificate is set to active.

verification_certificate: String

The private key verification certificate.

Trait Implementations

impl Clone for RegisterCACertificateRequest[src]

impl Default for RegisterCACertificateRequest[src]

impl PartialEq<RegisterCACertificateRequest> for RegisterCACertificateRequest[src]

impl Debug for RegisterCACertificateRequest[src]

impl StructuralPartialEq for RegisterCACertificateRequest[src]

impl Serialize for RegisterCACertificateRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self