pub struct UpdateCertificateOptionsRequest {
pub certificate_arn: String,
pub options: CertificateOptions,
}
Fields§
§certificate_arn: 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: 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.
Trait Implementations§
Source§impl Clone for UpdateCertificateOptionsRequest
impl Clone for UpdateCertificateOptionsRequest
Source§fn clone(&self) -> UpdateCertificateOptionsRequest
fn clone(&self) -> UpdateCertificateOptionsRequest
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for UpdateCertificateOptionsRequest
impl Default for UpdateCertificateOptionsRequest
Source§fn default() -> UpdateCertificateOptionsRequest
fn default() -> UpdateCertificateOptionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateCertificateOptionsRequest
impl PartialEq for UpdateCertificateOptionsRequest
Source§fn eq(&self, other: &UpdateCertificateOptionsRequest) -> bool
fn eq(&self, other: &UpdateCertificateOptionsRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateCertificateOptionsRequest
Auto Trait Implementations§
impl Freeze for UpdateCertificateOptionsRequest
impl RefUnwindSafe for UpdateCertificateOptionsRequest
impl Send for UpdateCertificateOptionsRequest
impl Sync for UpdateCertificateOptionsRequest
impl Unpin for UpdateCertificateOptionsRequest
impl UnwindSafe for UpdateCertificateOptionsRequest
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
Mutably borrows from an owned value. Read more