paws.compute (version 0.1.0)

elasticbeanstalk_delete_application_version: Deletes the specified version from the specified application

Description

Deletes the specified version from the specified application.

Usage

elasticbeanstalk_delete_application_version(ApplicationName,
  VersionLabel, DeleteSourceBundle)

Arguments

ApplicationName

[required] The name of the application to which the version belongs.

VersionLabel

[required] The label of the version to delete.

DeleteSourceBundle

Set to true to delete the source bundle from your storage bucket. Otherwise, the application version is deleted only from Elastic Beanstalk and the source bundle remains in Amazon S3.

Request syntax

svc$delete_application_version(
  ApplicationName = "string",
  VersionLabel = "string",
  DeleteSourceBundle = TRUE|FALSE
)

Details

You cannot delete an application version that is associated with a running environment.

Examples

Run this code
# NOT RUN {
# The following operation deletes an application version named
# 22a0-stage-150819_182129 for an application named my-app:
# }
# NOT RUN {
svc$delete_application_version(
  ApplicationName = "my-app",
  DeleteSourceBundle = TRUE,
  VersionLabel = "22a0-stage-150819_182129"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab