Amazon.Route53.AmazonRoute53Client.CreateReusableDelegationSet C# (CSharp) Метод

CreateReusableDelegationSet() публичный Метод

Creates a delegation set (a group of four name servers) that can be reused by multiple hosted zones. If a hosted zoned ID is specified, CreateReusableDelegationSet marks the delegation set associated with that zone as reusable

Send a POST request to the /2013-04-01/delegationset resource. The request body must include a document with a CreateReusableDelegationSetRequest element.

A reusable delegation set can't be associated with a private hosted zone/

For more information, including a procedure on how to create and configure a reusable delegation set (also known as white label name servers), see Configuring White Label Name Servers.

/// A delegation set with the same owner and caller reference combination has already /// been created. /// /// The specified delegation set has already been marked as reusable. /// /// You can create a hosted zone that has the same name as an existing hosted zone (example.com /// is common), but there is a limit to the number of hosted zones that have the same /// name. If you get this error, Amazon Route 53 has reached that limit. If you own the /// domain name and Amazon Route 53 generates this error, contact Customer Support. /// /// The specified HostedZone can't be found. /// /// Parameter name and problem. /// /// The input is not valid. /// /// The limits specified for a resource have been exceeded. ///
public CreateReusableDelegationSet ( CreateReusableDelegationSetRequest request ) : CreateReusableDelegationSetResponse
request CreateReusableDelegationSetRequest Container for the necessary parameters to execute the CreateReusableDelegationSet service method.
Результат CreateReusableDelegationSetResponse
        public CreateReusableDelegationSetResponse CreateReusableDelegationSet(CreateReusableDelegationSetRequest request)
        {
            var marshaller = new CreateReusableDelegationSetRequestMarshaller();
            var unmarshaller = CreateReusableDelegationSetResponseUnmarshaller.Instance;

            return Invoke<CreateReusableDelegationSetRequest,CreateReusableDelegationSetResponse>(request, marshaller, unmarshaller);
        }
AmazonRoute53Client