Select your cookie preferences

We use cookies and similar tools to enhance your experience, provide our services, deliver relevant advertising, and make improvements. Approved third parties also use these tools to help us deliver advertising and provide certain site features.

delete_application

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': {
        '...': '...',
    },
}