Route53RecoveryReadiness / Client / get_cell_readiness_summary

get_cell_readiness_summary#

Route53RecoveryReadiness.Client.get_cell_readiness_summary(**kwargs)#

Gets readiness for a cell. Aggregates the readiness of all the resources that are associated with the cell into a single value.

See also: AWS API Documentation

Request Syntax

response = client.get_cell_readiness_summary(
    CellName='string',
    MaxResults=123,
    NextToken='string'
)
Parameters:
  • CellName (string) –

    [REQUIRED]

    The name of the cell.

  • MaxResults (integer) – The number of objects that you want to return with this call.

  • NextToken (string) – The token that identifies which batch of results you want to see.

Return type:

dict

Returns:

Response Syntax

{
    'NextToken': 'string',
    'Readiness': 'READY'|'NOT_READY'|'UNKNOWN'|'NOT_AUTHORIZED',
    'ReadinessChecks': [
        {
            'Readiness': 'READY'|'NOT_READY'|'UNKNOWN'|'NOT_AUTHORIZED',
            'ReadinessCheckName': 'string'
        },
    ]
}

Response Structure

  • (dict) –

    200 response - Success.

    • NextToken (string) –

      The token that identifies which batch of results you want to see.

    • Readiness (string) –

      The readiness at a cell level.

    • ReadinessChecks (list) –

      Summaries for the readiness checks that make up the cell.

      • (dict) –

        Summary of all readiness check statuses in a recovery group, paginated in GetRecoveryGroupReadinessSummary and GetCellReadinessSummary.

        • Readiness (string) –

          The readiness status of this readiness check.

        • ReadinessCheckName (string) –

          The name of a readiness check.

Exceptions