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¶
Arguments¶
ApplicationName
[required] The name of the application to update. If no such application is found,
update_application
returns anInvalidParameterValue
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
)
)
)
)
)