Skip to main content

cell_readiness_summaries

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

Overview

Namecell_readiness_summaries
TypeResource
Idaws.route53_recovery_readiness.cell_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_cell_readiness_summaryselectcell_name, regionmaxResults, nextTokenGets readiness for a cell. Aggregates the readiness of all the resources that are associated with the cell into a single value.

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
cell_namestringThe name of the cell.
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

Gets readiness for a cell. Aggregates the readiness of all the resources that are associated with the cell into a single value.

SELECT
readiness,
readiness_check_name
FROM aws.route53_recovery_readiness.cell_readiness_summaries
WHERE cell_name = '{{ cell_name }}' -- required
AND region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;