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 customer_version: Option<i64>,
    pub generation_id: Option<String>,
    pub last_modified_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]

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

impl Debug for CACertificateDescription
[src]

Formats the value using the given formatter. Read more

impl Clone for CACertificateDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CACertificateDescription
[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