Deletes multiple key-value entries by key(s).
Use a bare-bones client and the command you need to make an API call.
import { KvServiceClient, DeleteBatchCommand } from "@rivet-gg/kv"; // ES Modules import // const { KvServiceClient, DeleteBatchCommand } = require("@rivet-gg/kv"); // CommonJS import const client = new KvServiceClient(config); const command = new DeleteBatchCommand(input); const response = await client.send(command);
DeleteBatchCommandInput for command's input shape.
input
DeleteBatchCommandOutput for command's response shape.
response
config for KvServiceClient's config shape.
config
Deletes multiple key-value entries by key(s).
Use a bare-bones client and the command you need to make an API call.
import { KvServiceClient, DeleteBatchCommand } from "@rivet-gg/kv"; // ES Modules import // const { KvServiceClient, DeleteBatchCommand } = require("@rivet-gg/kv"); // CommonJS import const client = new KvServiceClient(config); const command = new DeleteBatchCommand(input); const response = await client.send(command);DeleteBatchCommandInput for command's
inputshape.DeleteBatchCommandOutput for command's
responseshape.config for KvServiceClient's
configshape.