Struct rusoto_opsworks::SslConfiguration[][src]

pub struct SslConfiguration {
    pub certificate: String,
    pub chain: Option<String>,
    pub private_key: String,
}

Describes an app's SSL configuration.

Fields

The contents of the certificate's domain.crt file.

Optional. Can be used to specify an intermediate certificate authority key or client authentication.

The private key; the contents of the certificate's domain.kex file.

Trait Implementations

impl Default for SslConfiguration
[src]

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

impl Debug for SslConfiguration
[src]

Formats the value using the given formatter. Read more

impl Clone for SslConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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