:doc:`IAM <../../iam>` / Client / delete_account_password_policy

******************************
delete_account_password_policy
******************************



.. py:method:: IAM.Client.delete_account_password_policy()

  

  Deletes the password policy for the Amazon Web Services account. There are no parameters.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeleteAccountPasswordPolicy>`_  


  **Request Syntax**

  ::

    response = client.delete_account_password_policy()
  :returns: None
  **Exceptions**
  
  *   :py:class:`IAM.Client.exceptions.NoSuchEntityException`

  
  *   :py:class:`IAM.Client.exceptions.LimitExceededException`

  
  *   :py:class:`IAM.Client.exceptions.ServiceFailureException`

  

  **Examples**

  The following command removes the password policy from the current AWS account:
  ::

    response = client.delete_account_password_policy(
    )
    
    print(response)

  
  Expected Output:
  ::

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

  