delete_configuration_template
(**kwargs)¶Deletes the specified configuration template.
Note
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.
See also: AWS API Documentation
Request Syntax
response = client.delete_configuration_template(
ApplicationName='string',
TemplateName='string'
)
[REQUIRED]
The name of the application to delete the configuration template from.
[REQUIRED]
The name of the configuration template to delete.
None
Exceptions
ElasticBeanstalk.Client.exceptions.OperationInProgressException
Examples
The following operation deletes a configuration template named my-template for an application named my-app:
response = client.delete_configuration_template(
ApplicationName='my-app',
TemplateName='my-template',
)
print(response)
Expected Output:
{
'ResponseMetadata': {
'...': '...',
},
}