updateKeyValueStore
inline suspend fun CloudFrontClient.updateKeyValueStore(crossinline block: UpdateKeyValueStoreRequest.Builder.() -> Unit): 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
}