:doc:`SupplyChain <../../supplychain>` / Client / get_bill_of_materials_import_job

********************************
get_bill_of_materials_import_job
********************************



.. py:method:: SupplyChain.Client.get_bill_of_materials_import_job(**kwargs)

  

  Get status and details of a BillOfMaterialsImportJob.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/supplychain-2024-01-01/GetBillOfMaterialsImportJob>`_  


  **Request Syntax**
  ::

    response = client.get_bill_of_materials_import_job(
        instanceId='string',
        jobId='string'
    )
    
  :type instanceId: string
  :param instanceId: **[REQUIRED]** 

    The AWS Supply Chain instance identifier.

    

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

    The BillOfMaterialsImportJob identifier.

    

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

    
    ::

      {
          'job': {
              'instanceId': 'string',
              'jobId': 'string',
              'status': 'NEW'|'FAILED'|'IN_PROGRESS'|'QUEUED'|'SUCCESS',
              's3uri': 'string',
              'message': 'string'
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 

      The response parameters for GetBillOfMaterialsImportJob.

      
      

      - **job** *(dict) --* 

        The BillOfMaterialsImportJob.

        
        

        - **instanceId** *(string) --* 

          The BillOfMaterialsImportJob instanceId.

          
        

        - **jobId** *(string) --* 

          The BillOfMaterialsImportJob jobId.

          
        

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

          The BillOfMaterialsImportJob ConfigurationJobStatus.

          
        

        - **s3uri** *(string) --* 

          The S3 URI from which the CSV is read.

          
        

        - **message** *(string) --* 

          When the BillOfMaterialsImportJob has reached a terminal state, there will be a message.

          
    
  
  **Exceptions**
  
  *   :py:class:`SupplyChain.Client.exceptions.ServiceQuotaExceededException`

  
  *   :py:class:`SupplyChain.Client.exceptions.ResourceNotFoundException`

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

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

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

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

  
  *   :py:class:`SupplyChain.Client.exceptions.ConflictException`

  