deleteConfigurationTemplate
abstract suspend fun deleteConfigurationTemplate(input: DeleteConfigurationTemplateRequest): DeleteConfigurationTemplateResponse
Deletes the specified configuration template.
When you launch an environment using a configuration template, the environment gets a copy of the template. You can delete or modify the environment's copy of the template without affecting the running environment.
Samples
fun main() {
//sampleStart
// The following operation deletes a configuration template named my template for an application named
// my app
elasticBeanstalkClient.deleteConfigurationTemplate {
applicationName = "my-app"
templateName = "my-template"
}
//sampleEnd
}