Skip to main content

health_check_counts

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

Overview

Namehealth_check_counts
TypeResource
Idaws.route53.health_check_counts

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
health_check_countintegerThe number of health checks associated with the current Amazon Web Services account.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_health_check_countselectregionRetrieves the number of health checks 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 health checks that are associated with the current Amazon Web Services account.

SELECT
health_check_count
FROM aws.route53.health_check_counts
WHERE region = '{{ region }}' -- required
;