[][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 reason for the SSL/TLS certificate validation failure.

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 that was 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 containing information about the status of Lightsail's managed renewal for the certificate.

resource_type: Option<String>

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

revocation_reason: Option<String>

The reason the certificate was revoked. Valid values are below.

revoked_at: Option<f64>

The timestamp when the SSL/TLS certificate was 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 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>>

One or more domains or subdomains 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 (CNAME) of the certificate and additional domain names that can be used to connect to the website, such as example.com, www.example.com, or m.example.com.

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 PartialEq<LoadBalancerTlsCertificate> for LoadBalancerTlsCertificate[src]

impl Default for LoadBalancerTlsCertificate[src]

impl Clone for LoadBalancerTlsCertificate[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for LoadBalancerTlsCertificate[src]

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

Auto Trait Implementations

impl Send for LoadBalancerTlsCertificate

impl Sync for LoadBalancerTlsCertificate

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self