contact_reachability_status
Creates, updates, deletes, gets or lists a contact_reachability_status resource.
Overview
| Name | contact_reachability_status |
| Type | Resource |
| Id | aws.route53domains.contact_reachability_status |
Fields
The following fields are returned by SELECT queries:
- get_contact_reachability_status
| Name | Datatype | Description |
|---|---|---|
domain_name | string | The domain name for which you requested the reachability status. |
status | string | Whether 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_contact_reachability_status | select | region | 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. |
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_contact_reachability_status
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
;