AppConfig / Client / delete_application
delete_application#
- AppConfig.Client.delete_application(**kwargs)#
Deletes an application. Deleting an application does not delete a configuration from a host.
See also: AWS API Documentation
Request Syntax
response = client.delete_application( ApplicationId='string' )
- Parameters:
ApplicationId (string) –
[REQUIRED]
The ID of the application to delete.
- Returns:
None
Exceptions
AppConfig.Client.exceptions.ResourceNotFoundException
AppConfig.Client.exceptions.InternalServerException
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': { '...': '...', }, }