Struct rusoto_acm::ExportCertificateResponse[][src]

pub struct ExportCertificateResponse {
    pub certificate: Option<String>,
    pub certificate_chain: Option<String>,
    pub private_key: Option<String>,
}

Fields

The base64 PEM-encoded certificate.

The base64 PEM-encoded certificate chain. This does not include the certificate that you are exporting.

The PEM-encoded private key associated with the public key in the certificate.

Trait Implementations

impl Default for ExportCertificateResponse
[src]

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

impl Debug for ExportCertificateResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ExportCertificateResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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