[−][src]Struct rusoto_lightsail::LoadBalancerTlsCertificate
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
).
-
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. 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.
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]
fn eq(&self, other: &LoadBalancerTlsCertificate) -> bool
[src]
fn ne(&self, other: &LoadBalancerTlsCertificate) -> bool
[src]
impl Default for LoadBalancerTlsCertificate
[src]
impl Clone for LoadBalancerTlsCertificate
[src]
fn clone(&self) -> 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]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self