#[non_exhaustive]pub struct UpdateCertificateOptionsInput {
pub certificate_arn: Option<String>,
pub options: Option<CertificateOptions>,
}
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_arn: Option<String>
ARN of the requested certificate to update. This must be of the form:
arn:aws:acm:us-east-1:account:certificate/12345678-1234-1234-1234-123456789012
options: Option<CertificateOptions>
Use to update the options for your certificate. Currently, you can specify whether to add your certificate to a transparency log. Certificate transparency makes it possible to detect SSL/TLS certificates that have been mistakenly or maliciously issued. Certificates that have not been logged typically produce an error message in a browser.
Implementations§
source§impl UpdateCertificateOptionsInput
impl UpdateCertificateOptionsInput
sourcepub fn certificate_arn(&self) -> Option<&str>
pub fn certificate_arn(&self) -> Option<&str>
ARN of the requested certificate to update. This must be of the form:
arn:aws:acm:us-east-1:account:certificate/12345678-1234-1234-1234-123456789012
sourcepub fn options(&self) -> Option<&CertificateOptions>
pub fn options(&self) -> Option<&CertificateOptions>
Use to update the options for your certificate. Currently, you can specify whether to add your certificate to a transparency log. Certificate transparency makes it possible to detect SSL/TLS certificates that have been mistakenly or maliciously issued. Certificates that have not been logged typically produce an error message in a browser.
source§impl UpdateCertificateOptionsInput
impl UpdateCertificateOptionsInput
sourcepub fn builder() -> UpdateCertificateOptionsInputBuilder
pub fn builder() -> UpdateCertificateOptionsInputBuilder
Creates a new builder-style object to manufacture UpdateCertificateOptionsInput
.
Trait Implementations§
source§impl Clone for UpdateCertificateOptionsInput
impl Clone for UpdateCertificateOptionsInput
source§fn clone(&self) -> UpdateCertificateOptionsInput
fn clone(&self) -> UpdateCertificateOptionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for UpdateCertificateOptionsInput
impl PartialEq for UpdateCertificateOptionsInput
source§fn eq(&self, other: &UpdateCertificateOptionsInput) -> bool
fn eq(&self, other: &UpdateCertificateOptionsInput) -> bool
self
and other
values to be equal, and is used
by ==
.