AwsRoute53DomainsHostedZoneReference
interface AwsRoute53DomainsHostedZoneReference {
name: Input<string>;
nameServers: Input<Input<string>[]>;
}A public Route53 hosted zone that supplies authoritative nameservers for a domain registration.
Remarks
Pass the zone capability from an AwsRoute53 component. The reference must identify the same domain as the registration. The component forwards its nameservers to Route53 Domains without creating or managing the hosted zone.
Example
CODE
const hostedZone: AwsRoute53DomainsHostedZoneReference = {
name: 'example.com',
nameServers: ['ns-123.awsdns-45.com', 'ns-456.awsdns-78.net'],
};Properties
name: Input<string>
Hosted-zone domain name. It must resolve to the registered domain name.
nameServers: Input<Input<string>[]>
Public hosted-zone nameservers delegated by Route53 Domains.