Skip to main content

hosted_zone_counts

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

Overview

Namehosted_zone_counts
TypeResource
Idaws.route53.hosted_zone_counts

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
hosted_zone_countintegerThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
get_hosted_zone_countselectregionRetrieves 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;