:doc:`EntityResolution <../../entityresolution>` / Client / batch_delete_unique_id

**********************
batch_delete_unique_id
**********************



.. py:method:: EntityResolution.Client.batch_delete_unique_id(**kwargs)

  

  Deletes multiple unique IDs in a matching workflow.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/BatchDeleteUniqueId>`_  


  **Request Syntax**
  ::

    response = client.batch_delete_unique_id(
        workflowName='string',
        inputSource='string',
        uniqueIds=[
            'string',
        ]
    )
    
  :type workflowName: string
  :param workflowName: **[REQUIRED]** 

    The name of the workflow.

    

  
  :type inputSource: string
  :param inputSource: 

    The input source for the batch delete unique ID operation.

    

  
  :type uniqueIds: list
  :param uniqueIds: **[REQUIRED]** 

    The unique IDs to delete.

    

  
    - *(string) --* 

    

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

    
    ::

      {
          'status': 'COMPLETED'|'ACCEPTED',
          'errors': [
              {
                  'uniqueId': 'string',
                  'errorType': 'SERVICE_ERROR'|'VALIDATION_ERROR'
              },
          ],
          'deleted': [
              {
                  'uniqueId': 'string'
              },
          ],
          'disconnectedUniqueIds': [
              'string',
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

        The status of the batch delete unique ID operation.

        
      

      - **errors** *(list) --* 

        The errors from deleting multiple unique IDs.

        
        

        - *(dict) --* 

          The error information provided when the delete unique ID operation doesn't complete.

          
          

          - **uniqueId** *(string) --* 

            The unique ID that couldn't be deleted.

            
          

          - **errorType** *(string) --* 

            The error type for the delete unique ID operation.

             

            The ``SERVICE_ERROR`` value indicates that an internal service-side problem occurred during the deletion operation.

             

            The ``VALIDATION_ERROR`` value indicates that the deletion operation couldn't complete because of invalid input parameters or data.

            
      
    
      

      - **deleted** *(list) --* 

        The unique IDs that were deleted.

        
        

        - *(dict) --* 

          The deleted unique ID.

          
          

          - **uniqueId** *(string) --* 

            The unique ID of the deleted item.

            
      
    
      

      - **disconnectedUniqueIds** *(list) --* 

        The unique IDs that were disconnected.

        
        

        - *(string) --* 
    
  
  **Exceptions**
  
  *   :py:class:`EntityResolution.Client.exceptions.InternalServerException`

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

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

  