Skip to content

Get Readiness Check Status

route53recoveryreadiness_get_readiness_check_status R Documentation

Gets the readiness status for an individual readiness check

Description

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.

Usage

route53recoveryreadiness_get_readiness_check_status(MaxResults,
  NextToken, ReadinessCheckName)

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.

Value

A list with the following syntax:

list(
  Messages = list(
    list(
      MessageText = "string"
    )
  ),
  NextToken = "string",
  Readiness = "READY"|"NOT_READY"|"UNKNOWN"|"NOT_AUTHORIZED",
  Resources = list(
    list(
      ComponentId = "string",
      LastCheckedTimestamp = as.POSIXct(
        "2015-01-01"
      ),
      Readiness = "READY"|"NOT_READY"|"UNKNOWN"|"NOT_AUTHORIZED",
      ResourceArn = "string"
    )
  )
)

Request syntax

svc$get_readiness_check_status(
  MaxResults = 123,
  NextToken = "string",
  ReadinessCheckName = "string"
)