1. Packages
  2. AWS Classic
  3. API Docs
  4. route53
  5. getDelegationSet

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi

aws.route53.getDelegationSet

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.0 published on Monday, Apr 15, 2024 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",
    });
    
    import pulumi
    import pulumi_aws as aws
    
    dset = aws.route53.get_delegation_set(id="MQWGHCBFAKEID")
    
    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
    	})
    }
    
    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",
        });
    
    });
    
    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());
    
        }
    }
    
    variables:
      dset:
        fn::invoke:
          Function: aws:route53:getDelegationSet
          Arguments:
            id: MQWGHCBFAKEID
    

    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>
    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]
    func LookupDelegationSet(ctx *Context, args *LookupDelegationSetArgs, opts ...InvokeOption) (*LookupDelegationSetResult, error)
    func LookupDelegationSetOutput(ctx *Context, args *LookupDelegationSetOutputArgs, opts ...InvokeOption) LookupDelegationSetResultOutput

    > 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)
    }
    public static CompletableFuture<GetDelegationSetResult> getDelegationSet(GetDelegationSetArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: aws:route53/getDelegationSet:getDelegationSet
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string

    Delegation set ID.

    The following attribute is additionally exported:

    Id string

    Delegation set ID.

    The following attribute is additionally exported:

    id String

    Delegation set ID.

    The following attribute is additionally exported:

    id string

    Delegation set ID.

    The following attribute is additionally exported:

    id str

    Delegation set ID.

    The following attribute is additionally exported:

    id 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 logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi