route53_health_checks
Creates, updates, deletes, gets or lists a route53_health_checks resource.
Overview
| Name | route53_health_checks |
| Type | Resource |
| Id | aws.arc_region_switch.route53_health_checks |
Fields
The following fields are returned by SELECT queries:
- list_route53_health_checks
| Name | Datatype | Description |
|---|---|---|
health_check_id | string | The Amazon Route 53 health check ID. |
hosted_zone_id | string | The Amazon Route 53 health check hosted zone ID. |
record_name | string | The Amazon Route 53 record name. |
region | string | The Amazon Route 53 Region. (pattern: <code>[a-z]{2}-[a-z-]+-\d+</code>) |
status | string | The Amazon Route 53 health check status. (healthy, unhealthy, unknown) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_route53_health_checks | select | region | List the Amazon Route 53 health checks. |
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_route53_health_checks
List the Amazon Route 53 health checks.
SELECT
health_check_id,
hosted_zone_id,
record_name,
region,
status
FROM aws.arc_region_switch.route53_health_checks
WHERE region = '{{ region }}' -- required
;