domain_details
Creates, updates, deletes, gets or lists a domain_details resource.
Overview
| Name | domain_details |
| Type | Resource |
| Id | aws.route53domains.domain_details |
Fields
The following fields are returned by SELECT queries:
- get_domain_detail
| Name | Datatype | Description |
|---|---|---|
abuse_contact_email | string | Email 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_phone | string | Phone number for reporting abuse. |
admin_contact | object | Provides details about the domain administrative contact. |
admin_privacy | boolean | Specifies 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_renew | boolean | Specifies whether the domain registration is set to renew automatically. |
billing_contact | object | Provides details about the domain billing contact. |
billing_privacy | boolean | Specifies 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_date | string (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_sec | string | Deprecated. |
dnssec_keys | array | A complex type that contains information about the DNSSEC configuration. |
domain_name | string | The name of a domain. |
expiration_date | string (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). |
nameservers | array | The name servers of the domain. |
registrant_contact | object | Provides details about the domain registrant. |
registrant_privacy | boolean | Specifies 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_name | string | Name of the registrar of the domain as identified in the registry. |
registrar_url | string | Web address of the registrar. |
registry_domain_id | string | Reserved for future use. |
reseller | string | Reserved for future use. |
status_list | array | An 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_contact | object | Provides details about the domain technical contact. |
tech_privacy | boolean | Specifies 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_date | string (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_server | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_domain_detail | select | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_domain_detail
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
;