Get Cell Readiness Summary
route53recoveryreadiness_get_cell_readiness_summary | R Documentation |
Gets readiness for a cell¶
Description¶
Gets readiness for a cell. Aggregates the readiness of all the resources that are associated with the cell into a single value.
Usage¶
route53recoveryreadiness_get_cell_readiness_summary(CellName,
MaxResults, NextToken)
Arguments¶
CellName |
[required] The name of the cell. |
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. |
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_cell_readiness_summary(
CellName = "string",
MaxResults = 123,
NextToken = "string"
)