readiness_check_status
Creates, updates, deletes, gets or lists a readiness_check_status resource.
Overview
| Name | readiness_check_status |
| Type | Resource |
| Id | aws.route53_recovery_readiness.readiness_check_status |
Fields
The following fields are returned by SELECT queries:
- get_readiness_check_status
| Name | Datatype | Description |
|---|---|---|
component_id | string | The component id of the resource. |
last_checked_timestamp | string (date-time) | The time (UTC) that the resource was last checked for readiness, in ISO-8601 format. |
readiness | string | The readiness of a resource. (READY, NOT_READY, UNKNOWN, NOT_AUTHORIZED) |
resource_arn | string | The Amazon Resource Name (ARN) of the resource. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_readiness_check_status | select | readiness_check_name, region | maxResults, nextToken | Gets the readiness status for an individual readiness check. To see the overall readiness status for a recovery group, that considers the readiness status for all the readiness checks in a recovery group, use GetRecoveryGroupReadinessSummary. |
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 |
|---|---|---|
readiness_check_name | string | Name of a readiness check. |
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_readiness_check_status
Gets the readiness status for an individual readiness check. To see the overall readiness status for a recovery group, that considers the readiness status for all the readiness checks in a recovery group, use GetRecoveryGroupReadinessSummary.
SELECT
component_id,
last_checked_timestamp,
readiness,
resource_arn
FROM aws.route53_recovery_readiness.readiness_check_status
WHERE readiness_check_name = '{{ readiness_check_name }}' -- required
AND region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;