paws.compute (version 0.1.0)

elasticbeanstalk_delete_configuration_template: Deletes the specified configuration template

Description

Deletes the specified configuration template.

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.

Request syntax

svc$delete_configuration_template(
  ApplicationName = "string",
  TemplateName = "string"
)

Details

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.

Examples

Run this code
# NOT RUN {
# The following operation deletes a configuration template named
# my-template for an application named my-app:
# }
# NOT RUN {
svc$delete_configuration_template(
  ApplicationName = "my-app",
  TemplateName = "my-template"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab