Get Readiness Check Resource Status
route53recoveryreadiness_get_readiness_check_resource_status | R Documentation |
Gets individual readiness status for a readiness check¶
Description¶
Gets individual readiness status for a readiness check. To see the overall readiness status for a recovery group, that considers the readiness status for all the readiness checks in the recovery group, use GetRecoveryGroupReadinessSummary.
Usage¶
route53recoveryreadiness_get_readiness_check_resource_status(MaxResults,
NextToken, ReadinessCheckName, ResourceIdentifier)
Arguments¶
MaxResults
The number of objects that you want to return with this call.
NextToken
The token that identifies which batch of results you want to see.
ReadinessCheckName
[required] Name of a readiness check.
ResourceIdentifier
[required] The resource identifier, which is the Amazon Resource Name (ARN) or the identifier generated for the resource by Application Recovery Controller (for example, for a DNS target resource).
Value¶
A list with the following syntax:
list(
NextToken = "string",
Readiness = "READY"|"NOT_READY"|"UNKNOWN"|"NOT_AUTHORIZED",
Rules = list(
list(
LastCheckedTimestamp = as.POSIXct(
"2015-01-01"
),
Messages = list(
list(
MessageText = "string"
)
),
Readiness = "READY"|"NOT_READY"|"UNKNOWN"|"NOT_AUTHORIZED",
RuleId = "string"
)
)
)