deleteKeyValueStore
inline suspend fun CloudFrontClient.deleteKeyValueStore(crossinline block: DeleteKeyValueStoreRequest.Builder.() -> Unit): DeleteKeyValueStoreResponse
Specifies the key value store to delete.
Samples
fun main() {
//sampleStart
// Use the following command to delete a KeyValueStore.
cloudFrontClient.deleteKeyValueStore {
name = "my-keyvaluestore-name"
ifMatch = "ETVPDKIKX0DER"
}
//sampleEnd
}