CustomDnsArgs

data class CustomDnsArgs(val dsRecords: Output<List<DsRecordArgs>>? = null, val nameServers: Output<List<String>>) : ConvertibleToJava<CustomDnsArgs>

Configuration for an arbitrary DNS provider.

Constructors

Link copied to clipboard
fun CustomDnsArgs(dsRecords: Output<List<DsRecordArgs>>? = null, nameServers: Output<List<String>>)

Functions

Link copied to clipboard
open override fun toJava(): CustomDnsArgs

Properties

Link copied to clipboard
val dsRecords: Output<List<DsRecordArgs>>? = null

The list of DS records for this domain, which are used to enable DNSSEC. The domain's DNS provider can provide the values to set here. If this field is empty, DNSSEC is disabled.

Link copied to clipboard
val nameServers: Output<List<String>>

A list of name servers that store the DNS zone for this domain. Each name server is a domain name, with Unicode domain names expressed in Punycode format.