:doc:`SES <../../ses>` / Client / delete_receipt_filter

*********************
delete_receipt_filter
*********************



.. py:method:: SES.Client.delete_receipt_filter(**kwargs)

  

  Deletes the specified IP address filter.

   

  For information about managing IP address filters, see the `Amazon SES Developer Guide <https://docs.aws.amazon.com/ses/latest/dg/receiving-email-ip-filtering-console-walkthrough.html>`__.

   

  You can execute this operation no more than once per second.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteReceiptFilter>`_  


  **Request Syntax**
  ::

    response = client.delete_receipt_filter(
        FilterName='string'
    )
    
  :type FilterName: string
  :param FilterName: **[REQUIRED]** 

    The name of the IP address filter to delete.

    

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

    
    ::

      {}
      
    **Response Structure**

    

    - *(dict) --* 

      An empty element returned on a successful request.

      
  

  **Examples**

  The following example deletes an IP address filter:
  ::

    response = client.delete_receipt_filter(
        FilterName='MyFilter',
    )
    
    print(response)

  
  Expected Output:
  ::

    {
        'ResponseMetadata': {
            '...': '...',
        },
    }

  