Struct aws_sdk_acm::input::UpdateCertificateOptionsInput [−][src]
#[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
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateCertificateOptions, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateCertificateOptions, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateCertificateOptions
>
Creates a new builder-style object to manufacture UpdateCertificateOptionsInput
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
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
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 Send for UpdateCertificateOptionsInput
impl Sync for UpdateCertificateOptionsInput
impl Unpin for UpdateCertificateOptionsInput
impl UnwindSafe for UpdateCertificateOptionsInput
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