1. Packages
  2. AWS
  3. API Docs
  4. route53
  5. getDelegationSet
AWS v6.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

aws.route53.getDelegationSet

Explore with Pulumi AI

AWS v6.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

aws.route53.DelegationSet provides details about a specific Route 53 Delegation Set.

This data source allows to find a list of name servers associated with a specific delegation set.

Example Usage

The following example shows how to get a delegation set from its id.

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const dset = aws.route53.getDelegationSet({
    id: "MQWGHCBFAKEID",
});
Copy
import pulumi
import pulumi_aws as aws

dset = aws.route53.get_delegation_set(id="MQWGHCBFAKEID")
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/route53"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := route53.LookupDelegationSet(ctx, &route53.LookupDelegationSetArgs{
			Id: "MQWGHCBFAKEID",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var dset = Aws.Route53.GetDelegationSet.Invoke(new()
    {
        Id = "MQWGHCBFAKEID",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.route53.Route53Functions;
import com.pulumi.aws.route53.inputs.GetDelegationSetArgs;
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) {
        final var dset = Route53Functions.getDelegationSet(GetDelegationSetArgs.builder()
            .id("MQWGHCBFAKEID")
            .build());

    }
}
Copy
variables:
  dset:
    fn::invoke:
      function: aws:route53:getDelegationSet
      arguments:
        id: MQWGHCBFAKEID
Copy

Using getDelegationSet

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getDelegationSet(args: GetDelegationSetArgs, opts?: InvokeOptions): Promise<GetDelegationSetResult>
function getDelegationSetOutput(args: GetDelegationSetOutputArgs, opts?: InvokeOptions): Output<GetDelegationSetResult>
Copy
def get_delegation_set(id: Optional[str] = None,
                       opts: Optional[InvokeOptions] = None) -> GetDelegationSetResult
def get_delegation_set_output(id: Optional[pulumi.Input[str]] = None,
                       opts: Optional[InvokeOptions] = None) -> Output[GetDelegationSetResult]
Copy
func LookupDelegationSet(ctx *Context, args *LookupDelegationSetArgs, opts ...InvokeOption) (*LookupDelegationSetResult, error)
func LookupDelegationSetOutput(ctx *Context, args *LookupDelegationSetOutputArgs, opts ...InvokeOption) LookupDelegationSetResultOutput
Copy

> Note: This function is named LookupDelegationSet in the Go SDK.

public static class GetDelegationSet 
{
    public static Task<GetDelegationSetResult> InvokeAsync(GetDelegationSetArgs args, InvokeOptions? opts = null)
    public static Output<GetDelegationSetResult> Invoke(GetDelegationSetInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetDelegationSetResult> getDelegationSet(GetDelegationSetArgs args, InvokeOptions options)
public static Output<GetDelegationSetResult> getDelegationSet(GetDelegationSetArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: aws:route53/getDelegationSet:getDelegationSet
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Id This property is required. string

Delegation set ID.

The following attribute is additionally exported:

Id This property is required. string

Delegation set ID.

The following attribute is additionally exported:

id This property is required. String

Delegation set ID.

The following attribute is additionally exported:

id This property is required. string

Delegation set ID.

The following attribute is additionally exported:

id This property is required. str

Delegation set ID.

The following attribute is additionally exported:

id This property is required. String

Delegation set ID.

The following attribute is additionally exported:

getDelegationSet Result

The following output properties are available:

Arn string
CallerReference string
Id string
NameServers List<string>
Arn string
CallerReference string
Id string
NameServers []string
arn String
callerReference String
id String
nameServers List<String>
arn string
callerReference string
id string
nameServers string[]
arn str
caller_reference str
id str
name_servers Sequence[str]
arn String
callerReference String
id String
nameServers List<String>

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.
AWS v6.76.0 published on Tuesday, Apr 8, 2025 by Pulumi