ListAttributeGroupsForApplication
Source:
src/AWS/AppRegistry/ListAttributeGroupsForApplication.ts
Runtime binding for servicecatalog:ListAttributeGroupsForApplication.
Pages through the details (ID, ARN, name) of the attribute groups
associated with the bound application. Provide the implementation with
Effect.provide(AWS.AppRegistry.ListAttributeGroupsForApplicationHttp).
Reading Attribute Groups
Section titled “Reading Attribute Groups”// init — bind the operation to the applicationconst listAttributeGroupsForApplication = yield* AWS.AppRegistry.ListAttributeGroupsForApplication(app);
// runtimeconst page = yield* listAttributeGroupsForApplication({ maxResults: 25 });console.log(page.attributeGroupsDetails?.map((g) => g.name));