:doc:`Route53RecoveryReadiness <../../route53-recovery-readiness>` / Paginator / GetReadinessCheckResourceStatus

*******************************
GetReadinessCheckResourceStatus
*******************************



.. py:class:: Route53RecoveryReadiness.Paginator.GetReadinessCheckResourceStatus

  ::

    
    paginator = client.get_paginator('get_readiness_check_resource_status')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`Route53RecoveryReadiness.Client.get_readiness_check_resource_status`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/GetReadinessCheckResourceStatus>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          ReadinessCheckName='string',
          ResourceIdentifier='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type ReadinessCheckName: string
    :param ReadinessCheckName: **[REQUIRED]** 

      Name of a readiness check.

      

    
    :type ResourceIdentifier: string
    :param ResourceIdentifier: **[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).

      

    
    :type PaginationConfig: dict
    :param PaginationConfig: 

      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.

        

      
    
    
    :rtype: 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.

              
        
      
    