domain_suggestions
Creates, updates, deletes, gets or lists a domain_suggestions resource.
Overview
| Name | domain_suggestions |
| Type | Resource |
| Id | aws.route53domains.domain_suggestions |
Fields
The following fields are returned by SELECT queries:
- get_domain_suggestions
| Name | Datatype | Description |
|---|---|---|
suggestions_list | array | A list of possible domain names. If you specified true for OnlyAvailable in the request, the list contains only domains that are available for registration. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_domain_suggestions | select | region | The GetDomainSuggestions operation returns a list of suggested domain names. |
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_suggestions
The GetDomainSuggestions operation returns a list of suggested domain names.
SELECT
suggestions_list
FROM aws.route53domains.domain_suggestions
WHERE region = '{{ region }}' -- required
;