Delete Configuration Template
elasticbeanstalk_delete_configuration_template | R Documentation |
Deletes the specified configuration template¶
Description¶
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.
Usage¶
elasticbeanstalk_delete_configuration_template(ApplicationName,
TemplateName)
Arguments¶
ApplicationName |
[required] The name of the application to delete the configuration template from. |
TemplateName |
[required] The name of the configuration template to delete. |
Value¶
An empty list.
Request syntax¶
svc$delete_configuration_template(
ApplicationName = "string",
TemplateName = "string"
)
Examples¶
## Not run:
# The following operation deletes a configuration template named
# my-template for an application named my-app:
svc$delete_configuration_template(
ApplicationName = "my-app",
TemplateName = "my-template"
)
## End(Not run)