:doc:`Route53RecoveryReadiness <../../route53-recovery-readiness>` / Client / get_readiness_check_resource_status

***********************************
get_readiness_check_resource_status
***********************************



.. py:method:: Route53RecoveryReadiness.Client.get_readiness_check_resource_status(**kwargs)

  

  Gets individual readiness status for a readiness check. To see the overall readiness status for a recovery group, that considers the readiness status for all the readiness checks in the recovery group, use GetRecoveryGroupReadinessSummary.

  

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


  **Request Syntax**
  ::

    response = client.get_readiness_check_resource_status(
        MaxResults=123,
        NextToken='string',
        ReadinessCheckName='string',
        ResourceIdentifier='string'
    )
    
  :type MaxResults: integer
  :param MaxResults: 

    The number of objects that you want to return with this call.

    

  
  :type NextToken: string
  :param NextToken: 

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

    

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

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'NextToken': 'string',
          '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.

      
      

      - **NextToken** *(string) --* 

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

        
      

      - **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.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`Route53RecoveryReadiness.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`Route53RecoveryReadiness.Client.exceptions.ThrottlingException`

  
  *   :py:class:`Route53RecoveryReadiness.Client.exceptions.ValidationException`

  
  *   :py:class:`Route53RecoveryReadiness.Client.exceptions.InternalServerException`

  
  *   :py:class:`Route53RecoveryReadiness.Client.exceptions.AccessDeniedException`

  