Skip to content

ListApplications

Source: src/AWS/AppRegistry/ListApplications.ts

Runtime binding for servicecatalog:ListApplications.

Enumerates all AppRegistry applications in the account — useful in discovery/dashboard functions that inventory registered applications. Account-level: no resource argument. Provide the implementation with Effect.provide(AWS.AppRegistry.ListApplicationsHttp).

// init — account-level, no resource argument
const listApplications = yield* AWS.AppRegistry.ListApplications();
// runtime
const page = yield* listApplications({ maxResults: 20 });
for (const app of page.applications ?? []) {
console.log(app.name, app.id);
}