deleteKeyValueStore
abstract suspend fun deleteKeyValueStore(input: DeleteKeyValueStoreRequest): 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
}