paws.compute (version 0.1.0)

elasticbeanstalk_update_application_version: Updates the specified application version to have the specified properties

Description

Updates the specified application version to have the specified properties.

Usage

elasticbeanstalk_update_application_version(ApplicationName,
  VersionLabel, Description)

Arguments

ApplicationName

[required] The name of the application associated with this version.

If no application is found with this name, UpdateApplication returns an InvalidParameterValue error.

VersionLabel

[required] The name of the version to update.

If no application version is found with this label, UpdateApplication returns an InvalidParameterValue error.

Description

A new description for this version.

Request syntax

svc$update_application_version(
  ApplicationName = "string",
  VersionLabel = "string",
  Description = "string"
)

Details

If a property (for example, description) is not provided, the value remains unchanged. To clear properties, specify an empty string.

Examples

Run this code
# NOT RUN {
# The following operation updates the description of an application
# version named 22a0-stage-150819_185942:
# }
# NOT RUN {
svc$update_application_version(
  ApplicationName = "my-app",
  Description = "new description",
  VersionLabel = "22a0-stage-150819_185942"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab