hosted_zone_counts
Creates, updates, deletes, gets or lists a hosted_zone_counts resource.
Overview
| Name | hosted_zone_counts |
| Type | Resource |
| Id | aws.route53.hosted_zone_counts |
Fields
The following fields are returned by SELECT queries:
- get_hosted_zone_count
| Name | Datatype | Description |
|---|---|---|
hosted_zone_count | integer | The total number of public and private hosted zones that are associated with the current Amazon Web Services account. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_hosted_zone_count | select | region | Retrieves the number of hosted zones that are associated with the current Amazon Web Services 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
- get_hosted_zone_count
Retrieves the number of hosted zones that are associated with the current Amazon Web Services account.
SELECT
hosted_zone_count
FROM aws.route53.hosted_zone_counts
WHERE region = '{{ region }}' -- required
;