LoadBalancerTlsCertificateReference

class aws_cdk.aws_lightsail.LoadBalancerTlsCertificateReference(*, certificate_name, load_balancer_name, load_balancer_tls_certificate_arn)

Bases: object

A reference to a LoadBalancerTlsCertificate resource.

Parameters:
  • certificate_name (str) – The CertificateName of the LoadBalancerTlsCertificate resource.

  • load_balancer_name (str) – The LoadBalancerName of the LoadBalancerTlsCertificate resource.

  • load_balancer_tls_certificate_arn (str) – The ARN of the LoadBalancerTlsCertificate resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_lightsail as lightsail

load_balancer_tls_certificate_reference = lightsail.LoadBalancerTlsCertificateReference(
    certificate_name="certificateName",
    load_balancer_name="loadBalancerName",
    load_balancer_tls_certificate_arn="loadBalancerTlsCertificateArn"
)

Attributes

certificate_name

The CertificateName of the LoadBalancerTlsCertificate resource.

load_balancer_name

The LoadBalancerName of the LoadBalancerTlsCertificate resource.

load_balancer_tls_certificate_arn

The ARN of the LoadBalancerTlsCertificate resource.