updateApplicationVersion

Updates the specified application version to have the specified properties.

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

Samples


fun main() { 
   //sampleStart 
   // The following operation updates the description of an application version named 22a0 stage
// 150819_185942
val resp = elasticBeanstalkClient.updateApplicationVersion {
    applicationName = "my-app"
    versionLabel = "22a0-stage-150819_185942"
    description = "new description"
} 
   //sampleEnd
}