Skip to content

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).

// init — bind the operation to the application
const listAssociatedAttributeGroups =
yield* AWS.AppRegistry.ListAssociatedAttributeGroups(app);
// runtime
const page = yield* listAssociatedAttributeGroups({ maxResults: 25 });
console.log(page.attributeGroups);