cell_readiness_summaries
Creates, updates, deletes, gets or lists a cell_readiness_summaries resource.
Overview
| Name | cell_readiness_summaries |
| Type | Resource |
| Id | aws.route53_recovery_readiness.cell_readiness_summaries |
Fields
The following fields are returned by SELECT queries:
- get_cell_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_cell_readiness_summary | select | cell_name, region | maxResults, nextToken | Gets 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.
| Name | Datatype | Description |
|---|---|---|
cell_name | string | The name of the cell. |
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_cell_readiness_summary
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 }}'
;