Skip to main content

domain_details

Creates, updates, deletes, gets or lists a domain_details resource.

Overview

Namedomain_details
TypeResource
Idaws.route53domains.domain_details

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
abuse_contact_emailstringEmail address to contact to report incorrect contact information for a domain, to report that the domain is being used to send spam, to report that someone is cybersquatting on a domain name, or report some other type of abuse.
abuse_contact_phonestringPhone number for reporting abuse.
admin_contactobjectProvides details about the domain administrative contact.
admin_privacybooleanSpecifies whether contact information is concealed from WHOIS queries. If the value is true, WHOIS ("who is") queries return contact information either for Amazon Registrar or for our registrar associate, Gandi. If the value is false, WHOIS queries return the information that you entered for the admin contact.
auto_renewbooleanSpecifies whether the domain registration is set to renew automatically.
billing_contactobjectProvides details about the domain billing contact.
billing_privacybooleanSpecifies whether contact information is concealed from WHOIS queries. If the value is true, WHOIS ("who is") queries return contact information either for Amazon Registrar or for our registrar associate, Gandi. If the value is false, WHOIS queries return the information that you entered for the billing contact.
creation_datestring (date-time)The date when the domain was created as found in the response to a WHOIS query. The date and time is in Unix time format and Coordinated Universal time (UTC).
dns_secstringDeprecated.
dnssec_keysarrayA complex type that contains information about the DNSSEC configuration.
domain_namestringThe name of a domain.
expiration_datestring (date-time)The date when the registration for the domain is set to expire. The date and time is in Unix time format and Coordinated Universal time (UTC).
nameserversarrayThe name servers of the domain.
registrant_contactobjectProvides details about the domain registrant.
registrant_privacybooleanSpecifies whether contact information is concealed from WHOIS queries. If the value is true, WHOIS ("who is") queries return contact information either for Amazon Registrar or for our registrar associate, Gandi. If the value is false, WHOIS queries return the information that you entered for the registrant contact (domain owner).
registrar_namestringName of the registrar of the domain as identified in the registry.
registrar_urlstringWeb address of the registrar.
registry_domain_idstringReserved for future use.
resellerstringReserved for future use.
status_listarrayAn array of domain name status codes, also known as Extensible Provisioning Protocol (EPP) status codes. ICANN, the organization that maintains a central database of domain names, has developed a set of domain name status codes that tell you the status of a variety of operations on a domain name, for example, registering a domain name, transferring a domain name to another registrar, renewing the registration for a domain name, and so on. All registrars use this same set of status codes. For a current list of domain name status codes and an explanation of what each code means, go to the ICANN website and search for epp status codes. (Search on the ICANN website; web searches sometimes return an old version of the document.)
tech_contactobjectProvides details about the domain technical contact.
tech_privacybooleanSpecifies whether contact information is concealed from WHOIS queries. If the value is true, WHOIS ("who is") queries return contact information either for Amazon Registrar or for our registrar associate, Gandi. If the value is false, WHOIS queries return the information that you entered for the technical contact.
updated_datestring (date-time)The last updated date of the domain as found in the response to a WHOIS query. The date and time is in Unix time format and Coordinated Universal time (UTC).
who_is_serverstringThe fully qualified name of the WHOIS server that can answer the WHOIS query for the domain.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_domain_detailselectregionThis operation returns detailed information about a specified domain that is associated with the current Amazon Web Services account. Contact information for the domain is also returned as part of the output.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

This operation returns detailed information about a specified domain that is associated with the current Amazon Web Services account. Contact information for the domain is also returned as part of the output.

SELECT
abuse_contact_email,
abuse_contact_phone,
admin_contact,
admin_privacy,
auto_renew,
billing_contact,
billing_privacy,
creation_date,
dns_sec,
dnssec_keys,
domain_name,
expiration_date,
nameservers,
registrant_contact,
registrant_privacy,
registrar_name,
registrar_url,
registry_domain_id,
reseller,
status_list,
tech_contact,
tech_privacy,
updated_date,
who_is_server
FROM aws.route53domains.domain_details
WHERE region = '{{ region }}' -- required
;