AwsRoute53HostedZoneReferenceValue
interface AwsRoute53HostedZoneReferenceValue {
name: string;
nameServers: string[];
zoneId: string;
}Resolved public Route53 hosted-zone values.
Example
CODE
getAwsRoute53HostedZone({ zoneId: 'Z0123456789EXAMPLE' }).apply((zone) => {
const value: AwsRoute53HostedZoneReferenceValue = zone;
return value.nameServers;
});Properties
name: string
Hosted-zone name without a terminal root dot.
nameServers: string[]
Authoritative nameservers for delegation records.
zoneId: string
Provider-assigned hosted-zone ID.