CertificateReference

class aws_cdk.aws_lightsail.CertificateReference(*, certificate_arn, certificate_name)

Bases: object

A reference to a Certificate resource.

Parameters:
  • certificate_arn (str) – The ARN of the Certificate resource.

  • certificate_name (str) – The CertificateName of the Certificate 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

certificate_reference = lightsail.CertificateReference(
    certificate_arn="certificateArn",
    certificate_name="certificateName"
)

Attributes

certificate_arn

The ARN of the Certificate resource.

certificate_name

The CertificateName of the Certificate resource.