[][src]Struct rusoto_iot::UpdateCACertificateRequest

pub struct UpdateCACertificateRequest {
    pub certificate_id: String,
    pub new_auto_registration_status: Option<String>,
    pub new_status: Option<String>,
    pub registration_config: Option<RegistrationConfig>,
    pub remove_auto_registration: Option<bool>,
}

The input to the UpdateCACertificate operation.

Fields

certificate_id: String

The CA certificate identifier.

new_auto_registration_status: Option<String>

The new value for the auto registration status. Valid values are: "ENABLE" or "DISABLE".

new_status: Option<String>

The updated status of the CA certificate.

Note: The status value REGISTER_INACTIVE is deprecated and should not be used.

registration_config: Option<RegistrationConfig>

Information about the registration configuration.

remove_auto_registration: Option<bool>

If true, removes auto registration.

Trait Implementations

impl Clone for UpdateCACertificateRequest[src]

impl Default for UpdateCACertificateRequest[src]

impl PartialEq<UpdateCACertificateRequest> for UpdateCACertificateRequest[src]

impl Debug for UpdateCACertificateRequest[src]

impl Serialize for UpdateCACertificateRequest[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