Learn R Programming

paws.compute (version 0.1.12)

elasticbeanstalk_delete_application: 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)

Value

An empty list.

Arguments

ApplicationName

[required] The name of the application to delete.

TerminateEnvByForce

When set to true, running environments will be terminated before deleting the application.

Request syntax

svc$delete_application(
  ApplicationName = "string",
  TerminateEnvByForce = TRUE|FALSE
)

Examples

Run this code
if (FALSE) {
# The following operation deletes an application named my-app:
svc$delete_application(
  ApplicationName = "my-app"
)
}

Run the code above in your browser using DataLab