Skip to content

ListQApps

Source: src/AWS/QApps/ListQApps.ts

Runtime binding for qapps:ListQApps.

Lists the calling identity’s Q Apps in the bound app’s Q Business application environment instance. Provide the implementation with Effect.provide(AWS.QApps.ListQAppsHttp).

// init — bind the operation to the Q App
const listQApps = yield* AWS.QApps.ListQApps(app);
// runtime
const page = yield* listQApps({ limit: 25 });
console.log(page.apps.map((a) => a.title));