Struct rusoto_dms::ImportCertificateMessage[][src]

pub struct ImportCertificateMessage {
    pub certificate_identifier: String,
    pub certificate_pem: Option<String>,
    pub certificate_wallet: Option<Vec<u8>>,
    pub tags: Option<Vec<Tag>>,
}

Fields

The customer-assigned name of the certificate. Valid characters are A-z and 0-9.

The contents of the .pem X.509 certificate file for the certificate.

The location of the imported Oracle Wallet certificate for use with SSL.

The tags associated with the certificate.

Trait Implementations

impl Default for ImportCertificateMessage
[src]

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

impl Debug for ImportCertificateMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for ImportCertificateMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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