Route53RecoveryReadiness / Paginator / GetReadinessCheckResourceStatus

GetReadinessCheckResourceStatus#

class Route53RecoveryReadiness.Paginator.GetReadinessCheckResourceStatus#
paginator = client.get_paginator('get_readiness_check_resource_status')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from Route53RecoveryReadiness.Client.get_readiness_check_resource_status().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    ReadinessCheckName='string',
    ResourceIdentifier='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • ReadinessCheckName (string) –

    [REQUIRED]

    Name of a readiness check.

  • ResourceIdentifier (string) –

    [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).

  • PaginationConfig (dict) –

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) –

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) –

      The size of each page.

    • StartingToken (string) –

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type:

dict

Returns:

Response Syntax

{
    'Readiness': 'READY'|'NOT_READY'|'UNKNOWN'|'NOT_AUTHORIZED',
    'Rules': [
        {
            'LastCheckedTimestamp': datetime(2015, 1, 1),
            'Messages': [
                {
                    'MessageText': 'string'
                },
            ],
            'Readiness': 'READY'|'NOT_READY'|'UNKNOWN'|'NOT_AUTHORIZED',
            'RuleId': 'string'
        },
    ]
}

Response Structure

  • (dict) –

    200 response - Success.

    • Readiness (string) –

      The readiness at a rule level.

    • Rules (list) –

      Details of the rule’s results.

      • (dict) –

        The result of a successful Rule request, with status for an individual rule.

        • LastCheckedTimestamp (datetime) –

          The time the resource was last checked for readiness, in ISO-8601 format, UTC.

        • Messages (list) –

          Details about the resource’s readiness.

          • (dict) –

            Information relating to readiness check status.

            • MessageText (string) –

              The text of a readiness check message.

        • Readiness (string) –

          The readiness at rule level.

        • RuleId (string) –

          The identifier of the rule.