updateConfigurationProfile  
  abstract suspend fun updateConfigurationProfile(input: UpdateConfigurationProfileRequest): UpdateConfigurationProfileResponse
Updates a configuration profile.
Samples
fun main() { 
   //sampleStart 
   // The following update configuration profile example updates the description of the specified
// configuration profile.
val resp = appConfigClient.updateConfigurationProfile {
    applicationId = "339ohji"
    configurationProfileId = "ur8hx2f"
    description = "Configuration profile used for examples."
} 
   //sampleEnd
}