deleteApplication
Deletes the specified application along with all associated versions and configurations. The application versions will not be deleted from your Amazon S3 bucket.
You cannot delete an application that has a running environment.
Samples
fun main() {
//sampleStart
// The following operation deletes an application named my app
elasticBeanstalkClient.deleteApplication {
applicationName = "my-app"
}
//sampleEnd
}