ListAssociatedAttributeGroups
Source:
src/AWS/AppRegistry/ListAssociatedAttributeGroups.ts
Runtime binding for servicecatalog:ListAssociatedAttributeGroups.
Pages through the IDs of the attribute groups associated with the bound
application. Provide the implementation with
Effect.provide(AWS.AppRegistry.ListAssociatedAttributeGroupsHttp).
Reading Attribute Groups
Section titled “Reading Attribute Groups”// init — bind the operation to the applicationconst listAssociatedAttributeGroups = yield* AWS.AppRegistry.ListAssociatedAttributeGroups(app);
// runtimeconst page = yield* listAssociatedAttributeGroups({ maxResults: 25 });console.log(page.attributeGroups);