DomainReference

class aws_cdk.aws_lightsail.DomainReference(*, domain_arn, domain_name)

Bases: object

A reference to a Domain resource.

Parameters:
  • domain_arn (str) – The ARN of the Domain resource.

  • domain_name (str) – The DomainName of the Domain 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

domain_reference = lightsail.DomainReference(
    domain_arn="domainArn",
    domain_name="domainName"
)

Attributes

domain_arn

The ARN of the Domain resource.

domain_name

The DomainName of the Domain resource.