Struct rusoto_iot::RegisterCACertificateRequest [] [src]

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

The input to the RegisterCACertificate operation.

Fields

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

The CA certificate.

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

The private key verification certificate.

Trait Implementations

impl Default for RegisterCACertificateRequest
[src]

[src]

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

impl Debug for RegisterCACertificateRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for RegisterCACertificateRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations