Struct rusoto_iot::CACertificateDescription [] [src]

pub struct CACertificateDescription {
    pub auto_registration_status: Option<String>,
    pub certificate_arn: Option<String>,
    pub certificate_id: Option<String>,
    pub certificate_pem: Option<String>,
    pub creation_date: Option<f64>,
    pub owned_by: Option<String>,
    pub status: Option<String>,
}

Describes a CA certificate.

Fields

Whether the CA certificate configured for auto registration of device certificates. Valid values are "ENABLE" and "DISABLE"

The CA certificate ARN.

The CA certificate ID.

The CA certificate data, in PEM format.

The date the CA certificate was created.

The owner of the CA certificate.

The status of a CA certificate.

Trait Implementations

impl Default for CACertificateDescription
[src]

[src]

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

impl Debug for CACertificateDescription
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CACertificateDescription
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations