Struct rusoto_acm::ImportCertificateRequest[][src]

pub struct ImportCertificateRequest {
    pub certificate: Vec<u8>,
    pub certificate_arn: Option<String>,
    pub certificate_chain: Option<Vec<u8>>,
    pub private_key: Vec<u8>,
}

Fields

The certificate to import.

The Amazon Resource Name (ARN) of an imported certificate to replace. To import a new certificate, omit this field.

The PEM encoded certificate chain.

The private key that matches the public key in the certificate.

Trait Implementations

impl Default for ImportCertificateRequest
[src]

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

impl Debug for ImportCertificateRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ImportCertificateRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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