Struct rusoto_iot::CreateKeysAndCertificateResponse [] [src]

pub struct CreateKeysAndCertificateResponse {
    pub certificate_arn: Option<String>,
    pub certificate_id: Option<String>,
    pub certificate_pem: Option<String>,
    pub key_pair: Option<KeyPair>,
}

The output of the CreateKeysAndCertificate operation.

Fields

The ARN of the certificate.

The ID of the certificate. AWS IoT issues a default subject name for the certificate (for example, AWS IoT Certificate).

The certificate data, in PEM format.

The generated key pair.

Trait Implementations

impl Default for CreateKeysAndCertificateResponse
[src]

[src]

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

impl Debug for CreateKeysAndCertificateResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateKeysAndCertificateResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations