:doc:`ImportExport <../../importexport>` / Client / update_job

**********
update_job
**********



.. py:method:: ImportExport.Client.update_job(**kwargs)

  You use this operation to change the parameters specified in the original manifest file by supplying a new manifest file. The manifest file attached to this request replaces the original manifest file. You can only use the operation after a CreateJob request but before the data transfer starts and you can only use it on jobs you own.

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/importexport-2010-06-01/UpdateJob>`_  


  **Request Syntax**
  ::

    response = client.update_job(
        JobId='string',
        Manifest='string',
        JobType='Import'|'Export',
        ValidateOnly=True|False,
        APIVersion='string'
    )
    
  :type JobId: string
  :param JobId: **[REQUIRED]** A unique identifier which refers to a particular job.

  
  :type Manifest: string
  :param Manifest: **[REQUIRED]** The UTF-8 encoded text of the manifest file.

  
  :type JobType: string
  :param JobType: **[REQUIRED]** Specifies whether the job to initiate is an import or export job.

  
  :type ValidateOnly: boolean
  :param ValidateOnly: **[REQUIRED]** Validate the manifest and parameter values in the request but do not actually create a job.

  
  :type APIVersion: string
  :param APIVersion: Specifies the version of the client tool.

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

    
    ::

      {
          'Success': True|False,
          'WarningMessage': 'string',
          'ArtifactList': [
              {
                  'Description': 'string',
                  'URL': 'string'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* Output structure for the UpateJob operation.
      

      - **Success** *(boolean) --* Specifies whether (true) or not (false) AWS Import/Export updated your job.
      

      - **WarningMessage** *(string) --* An optional message notifying you of non-fatal issues with the job, such as use of an incompatible Amazon S3 bucket name.
      

      - **ArtifactList** *(list) --* A collection of artifacts.
        

        - *(dict) --* A discrete item that contains the description and URL of an artifact (such as a PDF).
          

          - **Description** *(string) --* The associated description for this object.
          

          - **URL** *(string) --* The URL for a given Artifact.
      
    
  
  **Exceptions**
  
  *   :py:class:`ImportExport.Client.exceptions.MissingParameterException`

  
  *   :py:class:`ImportExport.Client.exceptions.InvalidParameterException`

  
  *   :py:class:`ImportExport.Client.exceptions.InvalidAccessKeyIdException`

  
  *   :py:class:`ImportExport.Client.exceptions.InvalidAddressException`

  
  *   :py:class:`ImportExport.Client.exceptions.InvalidManifestFieldException`

  
  *   :py:class:`ImportExport.Client.exceptions.InvalidJobIdException`

  
  *   :py:class:`ImportExport.Client.exceptions.MissingManifestFieldException`

  
  *   :py:class:`ImportExport.Client.exceptions.NoSuchBucketException`

  
  *   :py:class:`ImportExport.Client.exceptions.ExpiredJobIdException`

  
  *   :py:class:`ImportExport.Client.exceptions.CanceledJobIdException`

  
  *   :py:class:`ImportExport.Client.exceptions.MissingCustomsException`

  
  *   :py:class:`ImportExport.Client.exceptions.InvalidCustomsException`

  
  *   :py:class:`ImportExport.Client.exceptions.InvalidFileSystemException`

  
  *   :py:class:`ImportExport.Client.exceptions.MultipleRegionsException`

  
  *   :py:class:`ImportExport.Client.exceptions.BucketPermissionException`

  
  *   :py:class:`ImportExport.Client.exceptions.MalformedManifestException`

  
  *   :py:class:`ImportExport.Client.exceptions.UnableToUpdateJobIdException`

  
  *   :py:class:`ImportExport.Client.exceptions.InvalidVersionException`

  