Skip to content

ListAttributeGroups

Source: src/AWS/AppRegistry/ListAttributeGroups.ts

Runtime binding for servicecatalog:ListAttributeGroups.

Enumerates all AppRegistry attribute groups the caller can access — useful in discovery/governance functions that inventory application metadata. Account-level: no resource argument. Provide the implementation with Effect.provide(AWS.AppRegistry.ListAttributeGroupsHttp).

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