Struct rusoto_acm::ExportCertificateRequest[][src]

pub struct ExportCertificateRequest {
    pub certificate_arn: String,
    pub passphrase: Vec<u8>,
}

Fields

An Amazon Resource Name (ARN) of the issued certificate. This must be of the form:

arn:aws:acm:region:account:certificate/12345678-1234-1234-1234-123456789012

Passphrase to associate with the encrypted exported private key. If you want to later decrypt the private key, you must have the passphrase. You can use the following OpenSSL command to decrypt a private key:

openssl rsa -in encrypted_key.pem -out decrypted_key.pem

Trait Implementations

impl Default for ExportCertificateRequest
[src]

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

impl Debug for ExportCertificateRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ExportCertificateRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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