Struct rusoto_iot::RegisterCertificateRequest [] [src]

pub struct RegisterCertificateRequest {
    pub ca_certificate_pem: Option<String>,
    pub certificate_pem: String,
    pub status: Option<String>,
}

The input to the RegisterCertificate operation.

Fields

The CA certificate used to sign the device certificate being registered.

The certificate data, in PEM format.

The status of the register certificate request.

Trait Implementations

impl Default for RegisterCertificateRequest
[src]

[src]

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

impl Debug for RegisterCertificateRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for RegisterCertificateRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations