Struct rusoto_acm::UpdateCertificateOptionsRequest[][src]

pub struct UpdateCertificateOptionsRequest {
    pub certificate_arn: String,
    pub options: CertificateOptions,
}

Fields

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

impl Default for UpdateCertificateOptionsRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for UpdateCertificateOptionsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateCertificateOptionsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateCertificateOptionsRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations