Skip to main content

associated_route53_health_checks

Creates, updates, deletes, gets or lists an associated_route53_health_checks resource.

Overview

Nameassociated_route53_health_checks
TypeResource
Idaws.route53_recovery_control_config.associated_route53_health_checks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
health_check_idstringIdentifiers for the health checks.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_associated_route53_health_checksselectrouting_control_arn, regionMaxResults, NextTokenReturns an array of all Amazon Route 53 health checks associated with a specific routing control.

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)
routing_control_arnstringThe Amazon Resource Name (ARN) of the routing control.
MaxResultsintegerThe number of objects that you want to return with this call.
NextTokenstringThe token that identifies which batch of results you want to see.

SELECT examples

Returns an array of all Amazon Route 53 health checks associated with a specific routing control.

SELECT
health_check_id
FROM aws.route53_recovery_control_config.associated_route53_health_checks
WHERE routing_control_arn = '{{ routing_control_arn }}' -- required
AND region = '{{ region }}' -- required
AND MaxResults = '{{ MaxResults }}'
AND NextToken = '{{ NextToken }}'
;