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

***************
delete_identity
***************



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

  

  Deletes the specified identity (an email address or a domain) from the list of verified identities.

   

  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/DeleteIdentity>`_  


  **Request Syntax**
  ::

    response = client.delete_identity(
        Identity='string'
    )
    
  :type Identity: string
  :param Identity: **[REQUIRED]** 

    The identity to be removed from the list of identities for the Amazon Web Services account.

    

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

    
    ::

      {}
      
    **Response Structure**

    

    - *(dict) --* 

      An empty element returned on a successful request.

      
  

  **Examples**

  The following example deletes an identity from the list of identities that have been submitted for verification with Amazon SES:
  ::

    response = client.delete_identity(
        Identity='user@example.com',
    )
    
    print(response)

  
  Expected Output:
  ::

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

  