updateApplication
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.
Samples
fun main() {
//sampleStart
// The following operation updates the description of an application named my app
val resp = elasticBeanstalkClient.updateApplication {
applicationName = "my-app"
description = "my Elastic Beanstalk application"
}
//sampleEnd
}