Struct rusoto_iot::OutgoingCertificate[][src]

pub struct OutgoingCertificate {
    pub certificate_arn: Option<String>,
    pub certificate_id: Option<String>,
    pub creation_date: Option<f64>,
    pub transfer_date: Option<f64>,
    pub transfer_message: Option<String>,
    pub transferred_to: Option<String>,
}

A certificate that has been transferred but not yet accepted.

Fields

The certificate ARN.

The certificate ID.

The certificate creation date.

The date the transfer was initiated.

The transfer message.

The AWS account to which the transfer was made.

Trait Implementations

impl Default for OutgoingCertificate
[src]

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

impl Debug for OutgoingCertificate
[src]

Formats the value using the given formatter. Read more

impl Clone for OutgoingCertificate
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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