updateApplication

This API is in preview release and subject to change.

Updates and persists an Application resource.

Samples


fun main() { 
   //sampleStart 
   // The following updates an existing application named with a new name.
val resp = appIntegrationsClient.updateApplication {
    arn = "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e"
    name = "My New Application Name"
} 
   //sampleEnd
}