domain_names
Creates, updates, deletes, gets or lists a domain_names resource.
Overview
| Name | domain_names |
| Type | Resource |
| Id | aws.cloudsearch.domain_names |
Fields
The following fields are returned by SELECT queries:
- list_domain_names
| Name | Datatype | Description |
|---|---|---|
domain_names | string | The names of the search domains owned by an account. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_domain_names | select | region | Lists all search domains owned by an account. |
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
- list_domain_names
Lists all search domains owned by an account.
SELECT
domain_names
FROM aws.cloudsearch.domain_names
WHERE region = '{{ region }}' -- required
;