Class GetDelegationSet
Inheritance
System.Object
GetDelegationSet
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Route53
Assembly: Pulumi.Aws.dll
Syntax
public static class GetDelegationSet
Methods
View SourceInvokeAsync(GetDelegationSetArgs, InvokeOptions)
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.
{{% examples %}}
Example Usage
{{% example %}}
The following example shows how to get a delegation set from its id.
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",
}));
}
}
{{% /example %}} {{% /examples %}}
Declaration
public static Task<GetDelegationSetResult> InvokeAsync(GetDelegationSetArgs args, InvokeOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| GetDelegationSetArgs | args | |
| InvokeOptions | options |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<GetDelegationSetResult> |