HostedZoneReference

class aws_cdk.interfaces.aws_route53.HostedZoneReference(*, hosted_zone_id)

Bases: object

A reference to a HostedZone resource.

Parameters:

hosted_zone_id (str) – The Id of the HostedZone 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.interfaces import aws_route53 as interfaces_aws_route53

hosted_zone_reference = interfaces_aws_route53.HostedZoneReference(
    hosted_zone_id="hostedZoneId"
)

Attributes

hosted_zone_id

The Id of the HostedZone resource.