Skip to main content

readiness_check_status

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

Overview

Namereadiness_check_status
TypeResource
Idaws.route53_recovery_readiness.readiness_check_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
component_idstringThe component id of the resource.
last_checked_timestampstring (date-time)The time (UTC) that the resource was last checked for readiness, in ISO-8601 format.
readinessstringThe readiness of a resource. (READY, NOT_READY, UNKNOWN, NOT_AUTHORIZED)
resource_arnstringThe Amazon Resource Name (ARN) of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_readiness_check_statusselectreadiness_check_name, regionmaxResults, nextTokenGets 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.

NameDatatypeDescription
readiness_check_namestringName of a readiness check.
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 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 }}'
;