Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TransferDomainRequest

import type { TransferDomainRequest } from "https://aws-api.deno.dev/v0.4/services/route53domains.ts?docs=full";

The TransferDomain request includes the following elements.

interface TransferDomainRequest {
AdminContact: ContactDetail;
AuthCode?: string | null;
AutoRenew?: boolean | null;
DomainName: string;
DurationInYears: number;
IdnLangCode?: string | null;
Nameservers?: Nameserver[] | null;
PrivacyProtectAdminContact?: boolean | null;
PrivacyProtectRegistrantContact?: boolean | null;
PrivacyProtectTechContact?: boolean | null;
RegistrantContact: ContactDetail;
TechContact: ContactDetail;
}

§Properties

§
AdminContact: ContactDetail
[src]

Provides detailed contact information.

§
AuthCode?: string | null
[src]

The authorization code for the domain. You get this value from the current registrar.

§
AutoRenew?: boolean | null
[src]

Indicates whether the domain will be automatically renewed (true) or not (false). Auto renewal only takes effect after the account is charged.

Default: true

§
DomainName: string
[src]

The name of the domain that you want to transfer to Route 53. The top-level domain (TLD), such as .com, must be a TLD that Route 53 supports. For a list of supported TLDs, see Domains that You Can Register with Amazon Route 53 in the Amazon Route 53 Developer Guide.

The domain name can contain only the following characters:

  • Letters a through z. Domain names are not case sensitive.
  • Numbers 0 through 9.
  • Hyphen (-). You can't specify a hyphen at the beginning or end of a label.
  • Period (.) to separate the labels in the name, such as the . in example.com.
§
DurationInYears: number
[src]

The number of years that you want to register the domain for. Domains are registered for a minimum of one year. The maximum period depends on the top-level domain.

Default: 1

§
IdnLangCode?: string | null
[src]

Reserved for future use.

§
Nameservers?: Nameserver[] | null
[src]

Contains details for the host and glue IP addresses.

§
PrivacyProtectAdminContact?: boolean | null
[src]

Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries return contact information either for Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, Gandi (for all other TLDs). If you specify false, WHOIS queries return the information that you entered for the admin contact.

Note: You must specify the same privacy setting for the administrative, registrant, and technical contacts.

Default: true

§
PrivacyProtectRegistrantContact?: boolean | null
[src]

Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries return contact information either for Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, Gandi (for all other TLDs). If you specify false, WHOIS queries return the information that you entered for the registrant contact (domain owner).

Note: You must specify the same privacy setting for the administrative, registrant, and technical contacts.

Default: true

§
PrivacyProtectTechContact?: boolean | null
[src]

Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries return contact information either for Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, Gandi (for all other TLDs). If you specify false, WHOIS queries return the information that you entered for the technical contact.

Note: You must specify the same privacy setting for the administrative, registrant, and technical contacts.

Default: true

§
RegistrantContact: ContactDetail
[src]

Provides detailed contact information.

§
TechContact: ContactDetail
[src]

Provides detailed contact information.