Get Recovery Group Readiness Summary
route53recoveryreadiness_get_recovery_group_readiness_summary | R Documentation |
Displays a summary of information about a recovery group's readiness status¶
Description¶
Displays a summary of information about a recovery group's readiness status. Includes the readiness checks for resources in the recovery group and the readiness status of each one.
Usage¶
route53recoveryreadiness_get_recovery_group_readiness_summary(
MaxResults, NextToken, RecoveryGroupName)
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. |
RecoveryGroupName |
[required] The name of a recovery group. |
Value¶
A list with the following syntax:
list(
NextToken = "string",
Readiness = "READY"|"NOT_READY"|"UNKNOWN"|"NOT_AUTHORIZED",
ReadinessChecks = list(
list(
Readiness = "READY"|"NOT_READY"|"UNKNOWN"|"NOT_AUTHORIZED",
ReadinessCheckName = "string"
)
)
)
Request syntax¶
svc$get_recovery_group_readiness_summary(
MaxResults = 123,
NextToken = "string",
RecoveryGroupName = "string"
)