recovery_group_readiness_summaries
Creates, updates, deletes, gets or lists a recovery_group_readiness_summaries resource.
Overview
| Name | recovery_group_readiness_summaries |
| Type | Resource |
| Id | aws.route53_recovery_readiness.recovery_group_readiness_summaries |
Fields
The following fields are returned by SELECT queries:
- get_recovery_group_readiness_summary
| Name | Datatype | Description |
|---|---|---|
readiness | string | The readiness status of this readiness check. (READY, NOT_READY, UNKNOWN, NOT_AUTHORIZED) |
readiness_check_name | string | The name of a readiness check. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_recovery_group_readiness_summary | select | recovery_group_name, region | maxResults, nextToken | Displays a summary of information about a recovery group's readiness status. Includes the readiness checks for resources in the recovery group and the readiness status of each one. |
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 |
|---|---|---|
recovery_group_name | string | The name of a recovery group. |
region | string | AWS region (default: us-east-1) |
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
- get_recovery_group_readiness_summary
Displays a summary of information about a recovery group's readiness status. Includes the readiness checks for resources in the recovery group and the readiness status of each one.
SELECT
readiness,
readiness_check_name
FROM aws.route53_recovery_readiness.recovery_group_readiness_summaries
WHERE recovery_group_name = '{{ recovery_group_name }}' -- required
AND region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;