AwsRoute53DomainsNameServerArgs
interface AwsRoute53DomainsNameServerArgs {
glueIps: Input<Input<string>[]>;
name: Input<string>;
}Authoritative nameserver configuration for a registered domain.
Example
CODE
const nameServer: AwsRoute53DomainsNameServerArgs = {
name: 'ns-123.awsdns-45.com',
glueIps: [],
};Properties
glueIps: Input<Input<string>[]>
Glue records; Route53 permits at most one IPv4 and one IPv6 address. Use an empty array when not required.
name: Input<string>
Fully qualified nameserver hostname.