Route53 Create a hosted zone using a delegationsetId .NET SDK #3170
-
Howdy, I'm using the .NET SDK 3.7.300.XX. From what I understand, the delegationset can't be changed after the zone has been created. Is it possible to create a zone with delegation, or define a delegationset on an existing domain with the .net sdk? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
In version using Amazon.Route53;
using Amazon.Route53.Model;
var route53 = new AmazonRoute53Client();
await route53.CreateHostedZoneAsync(new CreateHostedZoneRequest
{
DelegationSetId = ""
}); From our docs:
|
Beta Was this translation helpful? Give feedback.
In version
3.7.302.13
of theAWSSDK.Route53
package, I see aDelegationSetId
property inCreateHostedZoneRequest
, is that what you were looking for?From our docs: