Struct rusoto_acm::CertificateOptions[][src]

pub struct CertificateOptions {
    pub certificate_transparency_logging_preference: Option<String>,
}

Structure that contains options for your certificate. Currently, you can use this only to specify whether to opt in to or out of certificate transparency logging. Some browsers require that public certificates issued for your domain be recorded in a log. Certificates that are not logged typically generate a browser error. Transparency makes it possible for you to detect SSL/TLS certificates that have been mistakenly or maliciously issued for your domain. For general information, see Certificate Transparency Logging.

Fields

You can opt out of certificate transparency logging by specifying the DISABLED option. Opt in by specifying ENABLED.

Trait Implementations

impl Default for CertificateOptions
[src]

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

impl Debug for CertificateOptions
[src]

Formats the value using the given formatter. Read more

impl Clone for CertificateOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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