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