associated_route53_health_checks
Creates, updates, deletes, gets or lists an associated_route53_health_checks resource.
Overview
| Name | associated_route53_health_checks |
| Type | Resource |
| Id | aws.route53_recovery_control_config.associated_route53_health_checks |
Fields
The following fields are returned by SELECT queries:
- list_associated_route53_health_checks
| Name | Datatype | Description |
|---|---|---|
health_check_id | string | Identifiers for the health checks. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_associated_route53_health_checks | select | routing_control_arn, region | MaxResults, NextToken | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
routing_control_arn | string | The Amazon Resource Name (ARN) of the routing control. |
MaxResults | integer | The number of objects that you want to return with this call. |
NextToken | string | The token that identifies which batch of results you want to see. |
SELECT examples
- list_associated_route53_health_checks
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 }}'
;