Delete Application
elasticbeanstalk_delete_application | R Documentation |
Deletes the specified application along with all associated versions and configurations¶
Description¶
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.
Usage¶
elasticbeanstalk_delete_application(ApplicationName,
TerminateEnvByForce)
Arguments¶
ApplicationName |
[required] The name of the application to delete. |
TerminateEnvByForce |
When set to true, running environments will be terminated before deleting the application. |
Value¶
An empty list.
Request syntax¶
svc$delete_application(
ApplicationName = "string",
TerminateEnvByForce = TRUE|FALSE
)
Examples¶
## Not run:
# The following operation deletes an application named my-app:
svc$delete_application(
ApplicationName = "my-app"
)
## End(Not run)