Skip to main content

contact_reachability_status

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

Overview

Namecontact_reachability_status
TypeResource
Idaws.route53domains.contact_reachability_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
domain_namestringThe domain name for which you requested the reachability status.
statusstringWhether the registrant contact has responded. Values include the following: PENDING We sent the confirmation email and haven't received a response yet. DONE We sent the email and got confirmation from the registrant contact. EXPIRED The time limit expired before the registrant contact responded. (PENDING, DONE, EXPIRED)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_contact_reachability_statusselectregionFor operations that require confirmation that the email address for the registrant contact is valid, such as registering a new domain, this operation returns information about whether the registrant contact has responded. If you want us to resend the email, use the ResendContactReachabilityEmail operation.

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

For operations that require confirmation that the email address for the registrant contact is valid, such as registering a new domain, this operation returns information about whether the registrant contact has responded. If you want us to resend the email, use the ResendContactReachabilityEmail operation.

SELECT
domain_name,
status
FROM aws.route53domains.contact_reachability_status
WHERE region = '{{ region }}' -- required
;