Skip to main content

route53_health_checks_in_regions

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

Overview

Nameroute53_health_checks_in_regions
TypeResource
Idaws.arc_region_switch.route53_health_checks_in_regions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
health_check_idstringThe Amazon Route 53 health check ID.
hosted_zone_idstringThe Amazon Route 53 health check hosted zone ID.
record_namestringThe Amazon Route 53 record name.
regionstringThe Amazon Route 53 Region. (pattern: <code>[a-z]{2}-[a-z-]+-\d+</code>)
statusstringThe Amazon Route 53 health check status. (healthy, unhealthy, unknown)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_route53_health_checks_in_regionselectregionList the Amazon Route 53 health checks in a specific Amazon Web Services Region.

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

List the Amazon Route 53 health checks in a specific Amazon Web Services Region.

SELECT
health_check_id,
hosted_zone_id,
record_name,
region,
status
FROM aws.arc_region_switch.route53_health_checks_in_regions
WHERE region = '{{ region }}' -- required
;