Struct aws_sdk_acm::model::CertificateOptions [−][src]
#[non_exhaustive]pub struct CertificateOptions {
pub certificate_transparency_logging_preference: Option<CertificateTransparencyLoggingPreference>,
}
Expand description
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 (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.certificate_transparency_logging_preference: Option<CertificateTransparencyLoggingPreference>
You can opt out of certificate transparency logging by specifying the DISABLED
option. Opt in by specifying ENABLED
.
Implementations
You can opt out of certificate transparency logging by specifying the DISABLED
option. Opt in by specifying ENABLED
.
Creates a new builder-style object to manufacture CertificateOptions
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CertificateOptions
impl Send for CertificateOptions
impl Sync for CertificateOptions
impl Unpin for CertificateOptions
impl UnwindSafe for CertificateOptions
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more