DelegationSet

class DelegationSet : KotlinCustomResource

Provides a Route53 Delegation Set resource.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.route53.DelegationSet;
import com.pulumi.aws.route53.DelegationSetArgs;
import com.pulumi.aws.route53.Zone;
import com.pulumi.aws.route53.ZoneArgs;
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 main = new DelegationSet("main", DelegationSetArgs.builder()
.referenceName("DynDNS")
.build());
var primary = new Zone("primary", ZoneArgs.builder()
.delegationSetId(main.id())
.build());
var secondary = new Zone("secondary", ZoneArgs.builder()
.delegationSetId(main.id())
.build());
}
}

Import

Route53 Delegation Sets can be imported using the delegation set id, e.g.,

$ pulumi import aws:route53/delegationSet:DelegationSet set1 N1PA6795SAMPLE

Properties

Link copied to clipboard
val arn: Output<String>

The Amazon Resource Name (ARN) of the Delegation Set.

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

A list of authoritative name servers for the hosted zone (effectively a list of NS records).

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val referenceName: Output<String>?

This is a reference name used in Caller Reference (helpful for identifying single delegation set amongst others)

Link copied to clipboard
val urn: Output<String>