AWS Classic
getDelegationSet
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
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var dset = Output.Create(Aws.Route53.GetDelegationSet.InvokeAsync(new Aws.Route53.GetDelegationSetArgs
{
Id = "MQWGHCBFAKEID",
}));
}
}
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v5/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
})
}
package generated_program;
import java.util.*;
import java.io.*;
import java.nio.*;
import com.pulumi.*;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var dset = Output.of(Route53Functions.getDelegationSet(GetDelegationSetArgs.builder()
.id("MQWGHCBFAKEID")
.build()));
}
}
import pulumi
import pulumi_aws as aws
dset = aws.route53.get_delegation_set(id="MQWGHCBFAKEID")
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const dset = pulumi.output(aws.route53.getDelegationSet({
id: "MQWGHCBFAKEID",
}));
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
The Hosted Zone id of the desired delegation set.
- Id string
The Hosted Zone id of the desired delegation set.
- id String
The Hosted Zone id of the desired delegation set.
- id string
The Hosted Zone id of the desired delegation set.
- id str
The Hosted Zone id of the desired delegation set.
- id String
The Hosted Zone id of the desired delegation set.
getDelegationSet Result
The following output properties are available:
- Arn string
- Caller
Reference string - Id string
- Name
Servers List<string>
- Arn string
- Caller
Reference string - Id string
- Name
Servers []string
- arn String
- caller
Reference String - id String
- name
Servers List<String>
- arn string
- caller
Reference string - id string
- name
Servers string[]
- arn str
- caller_
reference str - id str
- name_
servers Sequence[str]
- arn String
- caller
Reference String - id String
- name
Servers List<String>
Package Details
- Repository
- https://github.com/pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
aws
Terraform Provider.