health_check_counts
Creates, updates, deletes, gets or lists a health_check_counts resource.
Overview
| Name | health_check_counts |
| Type | Resource |
| Id | aws.route53.health_check_counts |
Fields
The following fields are returned by SELECT queries:
- get_health_check_count
| Name | Datatype | Description |
|---|---|---|
health_check_count | integer | The number of health checks 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_health_check_count | select | region | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_health_check_count
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
;