Amazon.Route53Domains.AmazonRoute53DomainsClient.RegisterDomain C# (CSharp) Method

RegisterDomain() public method

This operation registers a domain. Domains are registered by the AWS registrar partner, Gandi. For some top-level domains (TLDs), this operation requires extra parameters.

When you register a domain, Amazon Route 53 does the following:

  • Creates a Amazon Route 53 hosted zone that has the same name as the domain. Amazon Route 53 assigns four name servers to your hosted zone and automatically updates your domain registration with the names of these name servers.
  • Enables autorenew, so your domain registration will renew automatically each year. We'll notify you in advance of the renewal date so you can choose whether to renew the registration.
  • Optionally enables privacy protection, so WHOIS queries return contact information for our registrar partner, Gandi, instead of the information you entered for registrant, admin, and tech contacts.
  • If registration is successful, returns an operation ID that you can use to track the progress and completion of the action. If the request is not completed successfully, the domain registrant is notified by email.
  • Charges your AWS account an amount based on the top-level domain. For more information, see Amazon Route 53 Pricing.
/// The number of domains has exceeded the allowed threshold for the account. /// /// The request is already in progress for the domain. /// /// The requested item is not acceptable. For example, for an OperationId it may refer /// to the ID of an operation that is already completed. For a domain name, it may not /// be a valid domain name or belong to the requester account. /// /// The number of operations or jobs running exceeded the allowed threshold for the account. /// /// The top-level domain does not support this operation. /// /// Amazon Route 53 does not support this top-level domain. ///
public RegisterDomain ( Amazon.Route53Domains.Model.RegisterDomainRequest request ) : Amazon.Route53Domains.Model.RegisterDomainResponse
request Amazon.Route53Domains.Model.RegisterDomainRequest Container for the necessary parameters to execute the RegisterDomain service method.
return Amazon.Route53Domains.Model.RegisterDomainResponse
        public RegisterDomainResponse RegisterDomain(RegisterDomainRequest request)
        {
            var marshaller = new RegisterDomainRequestMarshaller();
            var unmarshaller = RegisterDomainResponseUnmarshaller.Instance;

            return Invoke<RegisterDomainRequest,RegisterDomainResponse>(request, marshaller, unmarshaller);
        }
AmazonRoute53DomainsClient