Package-level declarations

Types

Link copied to clipboard
class DelegationSignerRecord : KotlinCustomResource

Provides a resource to manage a delegation signer record in the parent DNS zone for domains registered with Route53.

Link copied to clipboard
data class DelegationSignerRecordArgs(val domainName: Output<String>? = null, val signingAttributes: Output<DelegationSignerRecordSigningAttributesArgs>? = null, val timeouts: Output<DelegationSignerRecordTimeoutsArgs>? = null) : ConvertibleToJava<DelegationSignerRecordArgs>

Provides a resource to manage a delegation signer record in the parent DNS zone for domains registered with Route53.

Link copied to clipboard
Link copied to clipboard
class Domain : KotlinCustomResource
Link copied to clipboard
data class DomainArgs(val adminContact: Output<DomainAdminContactArgs>? = null, val adminPrivacy: Output<Boolean>? = null, val autoRenew: Output<Boolean>? = null, val billingContacts: Output<List<DomainBillingContactArgs>>? = null, val billingPrivacy: Output<Boolean>? = null, val domainName: Output<String>? = null, val durationInYears: Output<Int>? = null, val nameServers: Output<List<DomainNameServerArgs>>? = null, val registrantContact: Output<DomainRegistrantContactArgs>? = null, val registrantPrivacy: Output<Boolean>? = null, val tags: Output<Map<String, String>>? = null, val techContact: Output<DomainTechContactArgs>? = null, val techPrivacy: Output<Boolean>? = null, val timeouts: Output<DomainTimeoutsArgs>? = null, val transferLock: Output<Boolean>? = null) : ConvertibleToJava<DomainArgs>
Link copied to clipboard

Builder for DomainArgs.

Link copied to clipboard
object DomainMapper : ResourceMapper<Domain>
Link copied to clipboard

Builder for Domain.

Link copied to clipboard
class RegisteredDomain : KotlinCustomResource

Provides a resource to manage a domain that has been registered and associated with the current AWS account. To register, renew and deregister a domain use the aws.route53domains.Domain resource instead. This is an advanced resource and has special caveats to be aware of when using it. Please read this document in its entirety before using this resource. The aws.route53domains.RegisteredDomain resource behaves differently from normal resources in that if a domain has been registered, the provider does not register this domain, but instead "adopts" it into management. A destroy does not delete the domain but does remove the resource from state.

Link copied to clipboard
data class RegisteredDomainArgs(val adminContact: Output<RegisteredDomainAdminContactArgs>? = null, val adminPrivacy: Output<Boolean>? = null, val autoRenew: Output<Boolean>? = null, val billingContact: Output<RegisteredDomainBillingContactArgs>? = null, val billingPrivacy: Output<Boolean>? = null, val domainName: Output<String>? = null, val nameServers: Output<List<RegisteredDomainNameServerArgs>>? = null, val registrantContact: Output<RegisteredDomainRegistrantContactArgs>? = null, val registrantPrivacy: Output<Boolean>? = null, val tags: Output<Map<String, String>>? = null, val techContact: Output<RegisteredDomainTechContactArgs>? = null, val techPrivacy: Output<Boolean>? = null, val transferLock: Output<Boolean>? = null) : ConvertibleToJava<RegisteredDomainArgs>

Provides a resource to manage a domain that has been registered and associated with the current AWS account. To register, renew and deregister a domain use the aws.route53domains.Domain resource instead. This is an advanced resource and has special caveats to be aware of when using it. Please read this document in its entirety before using this resource. The aws.route53domains.RegisteredDomain resource behaves differently from normal resources in that if a domain has been registered, the provider does not register this domain, but instead "adopts" it into management. A destroy does not delete the domain but does remove the resource from state.

Link copied to clipboard
object RegisteredDomainMapper : ResourceMapper<RegisteredDomain>

Functions

Link copied to clipboard
fun domain(name: String): Domain
suspend fun domain(name: String, block: suspend DomainResourceBuilder.() -> Unit): Domain
Link copied to clipboard