paws.compute (version 0.1.0)

elasticbeanstalk_update_application: Updates the specified application to have the specified properties

Description

Updates the specified application to have the specified properties.

Usage

elasticbeanstalk_update_application(ApplicationName, Description)

Arguments

ApplicationName

[required] The name of the application to update. If no such application is found, UpdateApplication returns an InvalidParameterValue error.

Description

A new description for the application.

Default: If not specified, AWS Elastic Beanstalk does not update the description.

Request syntax

svc$update_application(
  ApplicationName = "string",
  Description = "string"
)

Details

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

Examples

Run this code
# NOT RUN {
# The following operation updates the description of an application named
# my-app:
# }
# NOT RUN {
svc$update_application(
  ApplicationName = "my-app",
  Description = "my Elastic Beanstalk application"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab