:doc:`CodePipeline <../../codepipeline>` / Client / acknowledge_third_party_job

***************************
acknowledge_third_party_job
***************************



.. py:method:: CodePipeline.Client.acknowledge_third_party_job(**kwargs)

  

  Confirms a job worker has received the specified job. Used for partner actions only.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/AcknowledgeThirdPartyJob>`_  


  **Request Syntax**
  ::

    response = client.acknowledge_third_party_job(
        jobId='string',
        nonce='string',
        clientToken='string'
    )
    
  :type jobId: string
  :param jobId: **[REQUIRED]** 

    The unique system-generated ID of the job.

    

  
  :type nonce: string
  :param nonce: **[REQUIRED]** 

    A system-generated random number that CodePipeline uses to ensure that the job is being worked on by only one job worker. Get this number from the response to a  GetThirdPartyJobDetails request.

    

  
  :type clientToken: string
  :param clientToken: **[REQUIRED]** 

    The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.

    

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

    
    ::

      {
          'status': 'Created'|'Queued'|'Dispatched'|'InProgress'|'TimedOut'|'Succeeded'|'Failed'
      }
      
    **Response Structure**

    

    - *(dict) --* 

      Represents the output of an AcknowledgeThirdPartyJob action.

      
      

      - **status** *(string) --* 

        The status information for the third party job, if any.

        
  
  **Exceptions**
  
  *   :py:class:`CodePipeline.Client.exceptions.ValidationException`

  
  *   :py:class:`CodePipeline.Client.exceptions.InvalidNonceException`

  
  *   :py:class:`CodePipeline.Client.exceptions.JobNotFoundException`

  
  *   :py:class:`CodePipeline.Client.exceptions.InvalidClientTokenException`

  