Options
All
  • Public
  • Public/Protected
  • All
Menu

Deletes multiple key-value entries by key(s).

example

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);
see

DeleteBatchCommandInput for command's input shape.

see

DeleteBatchCommandOutput for command's response shape.

see

config for KvServiceClient's config shape.

Hierarchy

Implements

Index

Constructors

Properties

Constructors

constructor

Properties

Readonly input

input: DeleteBatchCommandInput

Readonly middlewareStack

middlewareStack: IMiddlewareStack<DeleteBatchCommandInput, DeleteBatchCommandOutput>