Skip to content

BatchUpdateCategory

Source: src/AWS/QApps/BatchUpdateCategory.ts

Runtime binding for qapps:BatchUpdateCategory.

Renames or recolors existing library categories. Provide the implementation with Effect.provide(AWS.QApps.BatchUpdateCategoryHttp).

// init — bind the operation to the Q App
const batchUpdateCategory = yield* AWS.QApps.BatchUpdateCategory(app);
// runtime
yield* batchUpdateCategory({
categories: [{ id: categoryId, title: "People Ops" }],
});