updateKeyValueStore   
  abstract suspend fun updateKeyValueStore(input: UpdateKeyValueStoreRequest): UpdateKeyValueStoreResponse
Specifies the key value store to update.
Samples
fun main() { 
   //sampleStart 
   // Use the following command to update a KeyValueStore.
val resp = cloudFrontClient.updateKeyValueStore {
    name = "my-keyvaluestore-name"
    comment = "my-changed-comment"
    ifMatch = "ETVPDKIKX0DER"
} 
   //sampleEnd
}