[][src]Struct rusoto_lightsail::LoadBalancerTlsCertificate

pub struct LoadBalancerTlsCertificate {
    pub arn: Option<String>,
    pub created_at: Option<f64>,
    pub domain_name: Option<String>,
    pub domain_validation_records: Option<Vec<LoadBalancerTlsCertificateDomainValidationRecord>>,
    pub failure_reason: Option<String>,
    pub is_attached: Option<bool>,
    pub issued_at: Option<f64>,
    pub issuer: Option<String>,
    pub key_algorithm: Option<String>,
    pub load_balancer_name: Option<String>,
    pub location: Option<ResourceLocation>,
    pub name: Option<String>,
    pub not_after: Option<f64>,
    pub not_before: Option<f64>,
    pub renewal_summary: Option<LoadBalancerTlsCertificateRenewalSummary>,
    pub resource_type: Option<String>,
    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 support_code: Option<String>,
    pub tags: Option<Vec<Tag>>,
}

Describes a load balancer SSL/TLS certificate.

TLS is just an updated, more secure version of Secure Socket Layer (SSL).

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the SSL/TLS certificate.

created_at: Option<f64>

The time when you created your SSL/TLS certificate.

domain_name: Option<String>

The domain name for your SSL/TLS certificate.

domain_validation_records: Option<Vec<LoadBalancerTlsCertificateDomainValidationRecord>>

An array of LoadBalancerTlsCertificateDomainValidationRecord objects describing the records.

failure_reason: Option<String>

The validation failure reason, if any, of the certificate.

The following failure reasons are possible:

  • NOAVAILABLECONTACTS - This failure applies to email validation, which is not available for Lightsail certificates.

  • ADDITIONALVERIFICATIONREQUIRED - Lightsail requires additional information to process this certificate request. This can happen as a fraud-protection measure, such as when the domain ranks within the Alexa top 1000 websites. To provide the required information, use the AWS Support Center to contact AWS Support.

    You cannot request a certificate for Amazon-owned domain names such as those ending in amazonaws.com, cloudfront.net, or elasticbeanstalk.com.

  • DOMAINNOTALLOWED - One or more of the domain names in the certificate request was reported as an unsafe domain by VirusTotal. To correct the problem, search for your domain name on the VirusTotal website. If your domain is reported as suspicious, see Google Help for Hacked Websites to learn what you can do.

    If you believe that the result is a false positive, notify the organization that is reporting the domain. VirusTotal is an aggregate of several antivirus and URL scanners and cannot remove your domain from a block list itself. After you correct the problem and the VirusTotal registry has been updated, request a new certificate.

    If you see this error and your domain is not included in the VirusTotal list, visit the AWS Support Center and create a case.

  • INVALIDPUBLICDOMAIN - One or more of the domain names in the certificate request is not valid. Typically, this is because a domain name in the request is not a valid top-level domain. Try to request a certificate again, correcting any spelling errors or typos that were in the failed request, and ensure that all domain names in the request are for valid top-level domains. For example, you cannot request a certificate for example.invalidpublicdomain because invalidpublicdomain is not a valid top-level domain.

  • OTHER - Typically, this failure occurs when there is a typographical error in one or more of the domain names in the certificate request. Try to request a certificate again, correcting any spelling errors or typos that were in the failed request.

is_attached: Option<bool>

When true, the SSL/TLS certificate is attached to the Lightsail load balancer.

issued_at: Option<f64>

The time when the SSL/TLS certificate was issued.

issuer: Option<String>

The issuer of the certificate.

key_algorithm: Option<String>

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

load_balancer_name: Option<String>

The load balancer name where your SSL/TLS certificate is attached.

location: Option<ResourceLocation>

The AWS Region and Availability Zone where you created your certificate.

name: Option<String>

The name of the SSL/TLS certificate (e.g., my-certificate).

not_after: Option<f64>

The timestamp when the SSL/TLS certificate expires.

not_before: Option<f64>

The timestamp when the SSL/TLS certificate is first valid.

renewal_summary: Option<LoadBalancerTlsCertificateRenewalSummary>

An object that describes the status of the certificate renewal managed by Lightsail.

resource_type: Option<String>

The resource type (e.g., LoadBalancerTlsCertificate).

  • Instance - A Lightsail instance (a virtual private server)

  • StaticIp - A static IP address

  • KeyPair - The key pair used to connect to a Lightsail instance

  • InstanceSnapshot - A Lightsail instance snapshot

  • Domain - A DNS zone

  • PeeredVpc - A peered VPC

  • LoadBalancer - A Lightsail load balancer

  • LoadBalancerTlsCertificate - An SSL/TLS certificate associated with a Lightsail load balancer

  • Disk - A Lightsail block storage disk

  • DiskSnapshot - A block storage disk snapshot

revocation_reason: Option<String>

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

revoked_at: Option<f64>

The timestamp when the certificate was revoked. This value is present only when the certificate status is REVOKED.

serial: Option<String>

The serial number of the certificate.

signature_algorithm: Option<String>

The algorithm that was used to sign the certificate.

status: Option<String>

The validation status of the SSL/TLS certificate. Valid values are below.

subject: Option<String>

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

subject_alternative_names: Option<Vec<String>>

An array of strings that specify the alternate domains (e.g., example2.com) and subdomains (e.g., blog.example.com) for the certificate.

support_code: Option<String>

The support code. Include this code in your email to support when you have questions about your Lightsail load balancer or SSL/TLS certificate. This code enables our support team to look up your Lightsail information more easily.

tags: Option<Vec<Tag>>

The tag keys and optional values for the resource. For more information about tags in Lightsail, see the Lightsail Dev Guide.

Trait Implementations

impl Clone for LoadBalancerTlsCertificate[src]

impl Debug for LoadBalancerTlsCertificate[src]

impl Default for LoadBalancerTlsCertificate[src]

impl<'de> Deserialize<'de> for LoadBalancerTlsCertificate[src]

impl PartialEq<LoadBalancerTlsCertificate> for LoadBalancerTlsCertificate[src]

impl StructuralPartialEq for LoadBalancerTlsCertificate[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.