:doc:`Bedrock <../../bedrock>` / Client / get_model_copy_job

******************
get_model_copy_job
******************



.. py:method:: Bedrock.Client.get_model_copy_job(**kwargs)

  

  Retrieves information about a model copy job. For more information, see `Copy models to be used in other regions <https://docs.aws.amazon.com/bedrock/latest/userguide/copy-model.html>`__ in the `Amazon Bedrock User Guide <https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html>`__.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/bedrock-2023-04-20/GetModelCopyJob>`_  


  **Request Syntax**
  ::

    response = client.get_model_copy_job(
        jobArn='string'
    )
    
  :type jobArn: string
  :param jobArn: **[REQUIRED]** 

    The Amazon Resource Name (ARN) of the model copy job.

    

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

    
    ::

      {
          'jobArn': 'string',
          'status': 'InProgress'|'Completed'|'Failed',
          'creationTime': datetime(2015, 1, 1),
          'targetModelArn': 'string',
          'targetModelName': 'string',
          'sourceAccountId': 'string',
          'sourceModelArn': 'string',
          'targetModelKmsKeyArn': 'string',
          'targetModelTags': [
              {
                  'key': 'string',
                  'value': 'string'
              },
          ],
          'failureMessage': 'string',
          'sourceModelName': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **jobArn** *(string) --* 

        The Amazon Resource Name (ARN) of the model copy job.

        
      

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

        The status of the model copy job.

        
      

      - **creationTime** *(datetime) --* 

        The time at which the model copy job was created.

        
      

      - **targetModelArn** *(string) --* 

        The Amazon Resource Name (ARN) of the copied model.

        
      

      - **targetModelName** *(string) --* 

        The name of the copied model.

        
      

      - **sourceAccountId** *(string) --* 

        The unique identifier of the account that the model being copied originated from.

        
      

      - **sourceModelArn** *(string) --* 

        The Amazon Resource Name (ARN) of the original model being copied.

        
      

      - **targetModelKmsKeyArn** *(string) --* 

        The Amazon Resource Name (ARN) of the KMS key encrypting the copied model.

        
      

      - **targetModelTags** *(list) --* 

        The tags associated with the copied model.

        
        

        - *(dict) --* 

          Definition of the key/value pair for a tag.

          
          

          - **key** *(string) --* 

            Key for the tag.

            
          

          - **value** *(string) --* 

            Value for the tag.

            
      
    
      

      - **failureMessage** *(string) --* 

        An error message for why the model copy job failed.

        
      

      - **sourceModelName** *(string) --* 

        The name of the original model being copied.

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

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

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

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

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

  