Skip to main content

recovery_group_readiness_summaries

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

Overview

Namerecovery_group_readiness_summaries
TypeResource
Idaws.route53_recovery_readiness.recovery_group_readiness_summaries

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
readinessstringThe readiness status of this readiness check. (READY, NOT_READY, UNKNOWN, NOT_AUTHORIZED)
readiness_check_namestringThe name of a readiness check.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_recovery_group_readiness_summaryselectrecovery_group_name, regionmaxResults, nextTokenDisplays 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.

NameDatatypeDescription
recovery_group_namestringThe name of a recovery group.
regionstringAWS region (default: us-east-1)
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

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 }}'
;