Skip to content

Update Application

elasticbeanstalk_update_application R Documentation

Updates the specified application to have the specified properties

Description

Updates the specified application to have the specified properties.

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

Usage

elasticbeanstalk_update_application(ApplicationName, Description)

Arguments

ApplicationName

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

Description

A new description for the application.

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

Value

A list with the following syntax:

list(
  Application = list(
    ApplicationArn = "string",
    ApplicationName = "string",
    Description = "string",
    DateCreated = as.POSIXct(
      "2015-01-01"
    ),
    DateUpdated = as.POSIXct(
      "2015-01-01"
    ),
    Versions = list(
      "string"
    ),
    ConfigurationTemplates = list(
      "string"
    ),
    ResourceLifecycleConfig = list(
      ServiceRole = "string",
      VersionLifecycleConfig = list(
        MaxCountRule = list(
          Enabled = TRUE|FALSE,
          MaxCount = 123,
          DeleteSourceFromS3 = TRUE|FALSE
        ),
        MaxAgeRule = list(
          Enabled = TRUE|FALSE,
          MaxAgeInDays = 123,
          DeleteSourceFromS3 = TRUE|FALSE
        )
      )
    )
  )
)

Request syntax

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

Examples

## Not run: 
# The following operation updates the description of an application named
# my-app:
svc$update_application(
  ApplicationName = "my-app",
  Description = "my Elastic Beanstalk application"
)

## End(Not run)