Struct rusoto_iot::UpdateCertificateRequest[][src]

pub struct UpdateCertificateRequest {
    pub certificate_id: String,
    pub new_status: String,
}

The input for the UpdateCertificate operation.

Fields

The ID of the certificate.

The new status.

Note: Setting the status to PENDING_TRANSFER will result in an exception being thrown. PENDING_TRANSFER is a status used internally by AWS IoT. It is not intended for developer use.

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

Trait Implementations

impl Default for UpdateCertificateRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for UpdateCertificateRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateCertificateRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateCertificateRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations