Registered Domain Args
data class RegisteredDomainArgs(val adminContact: Output<RegisteredDomainAdminContactArgs>? = null, val adminPrivacy: Output<Boolean>? = null, val autoRenew: 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. 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.
Example Usage
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.route53domains.RegisteredDomain;
import com.pulumi.aws.route53domains.RegisteredDomainArgs;
import com.pulumi.aws.route53domains.inputs.RegisteredDomainNameServerArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new RegisteredDomain("example", RegisteredDomainArgs.builder()
.domainName("example.com")
.nameServers(
RegisteredDomainNameServerArgs.builder()
.name("ns-195.awsdns-24.com")
.build(),
RegisteredDomainNameServerArgs.builder()
.name("ns-874.awsdns-45.net")
.build())
.tags(Map.of("Environment", "test"))
.build());
}
}Content copied to clipboard
Constructors
Link copied to clipboard
fun RegisteredDomainArgs(adminContact: Output<RegisteredDomainAdminContactArgs>? = null, adminPrivacy: Output<Boolean>? = null, autoRenew: Output<Boolean>? = null, domainName: Output<String>? = null, nameServers: Output<List<RegisteredDomainNameServerArgs>>? = null, registrantContact: Output<RegisteredDomainRegistrantContactArgs>? = null, registrantPrivacy: Output<Boolean>? = null, tags: Output<Map<String, String>>? = null, techContact: Output<RegisteredDomainTechContactArgs>? = null, techPrivacy: Output<Boolean>? = null, transferLock: Output<Boolean>? = null)