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).
Discovering Attribute Groups
Section titled “Discovering Attribute Groups”// init — account-level, no resource argumentconst listAttributeGroups = yield* AWS.AppRegistry.ListAttributeGroups();
// runtimeconst page = yield* listAttributeGroups({ maxResults: 20 });for (const group of page.attributeGroups ?? []) { console.log(group.name, group.id);}