:doc:`AppConfig <../../appconfig>` / Client / delete_application

******************
delete_application
******************



.. py:method:: AppConfig.Client.delete_application(**kwargs)

  

  Deletes an application.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/DeleteApplication>`_  


  **Request Syntax**
  ::

    response = client.delete_application(
        ApplicationId='string'
    )
    
  :type ApplicationId: string
  :param ApplicationId: **[REQUIRED]** 

    The ID of the application to delete.

    

  
  
  :returns: None
  **Exceptions**
  
  *   :py:class:`AppConfig.Client.exceptions.ResourceNotFoundException`

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

  
  *   :py:class:`AppConfig.Client.exceptions.BadRequestException`

  

  **Examples**

  The following delete-application example deletes the specified application. 

  ::

    response = client.delete_application(
        ApplicationId='339ohji',
    )
    
    print(response)

  
  Expected Output:
  ::

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

  