#[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 ==
.impl StructuralPartialEq for UpdateCertificateOptionsInput
Auto Trait Implementations§
impl Freeze for UpdateCertificateOptionsInput
impl RefUnwindSafe for UpdateCertificateOptionsInput
impl Send for UpdateCertificateOptionsInput
impl Sync for UpdateCertificateOptionsInput
impl Unpin for UpdateCertificateOptionsInput
impl UnwindSafe for UpdateCertificateOptionsInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more