Struct rusoto_acm::CertificateDetail [] [src]

pub struct CertificateDetail {
    pub certificate_arn: Option<String>,
    pub created_at: Option<f64>,
    pub domain_name: Option<String>,
    pub domain_validation_options: Option<Vec<DomainValidation>>,
    pub failure_reason: Option<String>,
    pub imported_at: Option<f64>,
    pub in_use_by: Option<Vec<String>>,
    pub issued_at: Option<f64>,
    pub issuer: Option<String>,
    pub key_algorithm: Option<String>,
    pub not_after: Option<f64>,
    pub not_before: Option<f64>,
    pub renewal_summary: Option<RenewalSummary>,
    pub revocation_reason: Option<String>,
    pub revoked_at: Option<f64>,
    pub serial: Option<String>,
    pub signature_algorithm: Option<String>,
    pub status: Option<String>,
    pub subject: Option<String>,
    pub subject_alternative_names: Option<Vec<String>>,
    pub type_: Option<String>,
}

Contains metadata about an ACM certificate. This structure is returned in the response to a DescribeCertificate request.

Fields

The Amazon Resource Name (ARN) of the certificate. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference.

The time at which the certificate was requested. This value exists only when the certificate type is AMAZON_ISSUED.

The fully qualified domain name for the certificate, such as www.example.com or example.com.

Contains information about the initial validation of each domain name that occurs as a result of the RequestCertificate request. This field exists only when the certificate type is AMAZON_ISSUED.

The reason the certificate request failed. This value exists only when the certificate status is FAILED. For more information, see Certificate Request Failed in the AWS Certificate Manager User Guide.

The date and time at which the certificate was imported. This value exists only when the certificate type is IMPORTED.

A list of ARNs for the AWS resources that are using the certificate. A certificate can be used by multiple AWS resources.

The time at which the certificate was issued. This value exists only when the certificate type is AMAZON_ISSUED.

The name of the certificate authority that issued and signed the certificate.

The algorithm that was used to generate the key pair (the public and private key).

The time after which the certificate is not valid.

The time before which the certificate is not valid.

Contains information about the status of ACM's managed renewal for the certificate. This field exists only when the certificate type is AMAZON_ISSUED.

The reason the certificate was revoked. This value exists only when the certificate status is REVOKED.

The time at which the certificate was revoked. This value exists only when the certificate status is REVOKED.

The serial number of the certificate.

The algorithm that was used to sign the certificate.

The status of the certificate.

The name of the entity that is associated with the public key contained in the certificate.

One or more domain names (subject alternative names) included in the certificate. This list contains the domain names that are bound to the public key that is contained in the certificate. The subject alternative names include the canonical domain name (CN) of the certificate and additional domain names that can be used to connect to the website.

The source of the certificate. For certificates provided by ACM, this value is AMAZON_ISSUED. For certificates that you imported with ImportCertificate, this value is IMPORTED. ACM does not provide managed renewal for imported certificates. For more information about the differences between certificates that you import and those that ACM provides, see Importing Certificates in the AWS Certificate Manager User Guide.

Trait Implementations

impl Default for CertificateDetail
[src]

[src]

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

impl Debug for CertificateDetail
[src]

[src]

Formats the value using the given formatter.

impl Clone for CertificateDetail
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more