Struct rusoto_iot::CACertificate[][src]

pub struct CACertificate {
    pub certificate_arn: Option<String>,
    pub certificate_id: Option<String>,
    pub creation_date: Option<f64>,
    pub status: Option<String>,
}

A CA certificate.

Fields

The ARN of the CA certificate.

The ID of the CA certificate.

The date the CA certificate was created.

The status of the CA certificate.

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

Trait Implementations

impl Default for CACertificate
[src]

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

impl Debug for CACertificate
[src]

Formats the value using the given formatter. Read more

impl Clone for CACertificate
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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