Struct rusoto_lightsail::LoadBalancerTlsCertificateDomainValidationRecord [] [src]

pub struct LoadBalancerTlsCertificateDomainValidationRecord {
    pub domain_name: Option<String>,
    pub name: Option<String>,
    pub type_: Option<String>,
    pub validation_status: Option<String>,
    pub value: Option<String>,
}

Describes the validation record of each domain name in the TLS/SSL certificate.

Fields

The domain name against which your TLS/SSL certificate was validated.

A fully qualified domain name in the certificate. For example, example.com.

The type of validation record. For example, CNAME for domain validation.

The validation status. Valid values are listed below.

The value for that type.

Trait Implementations

impl Default for LoadBalancerTlsCertificateDomainValidationRecord
[src]

[src]

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

impl Debug for LoadBalancerTlsCertificateDomainValidationRecord
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for LoadBalancerTlsCertificateDomainValidationRecord
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations