ListAssociatedResources
Source:
src/AWS/AppRegistry/ListAssociatedResources.ts
Runtime binding for servicecatalog:ListAssociatedResources.
Pages through the resources associated with the bound application.
Provide the implementation with
Effect.provide(AWS.AppRegistry.ListAssociatedResourcesHttp).
Reading Associated Resources
Section titled “Reading Associated Resources”// init — bind the operation to the applicationconst listAssociatedResources = yield* AWS.AppRegistry.ListAssociatedResources(app);
// runtimeconst page = yield* listAssociatedResources({ maxResults: 25 });console.log(page.resources?.map((r) => r.arn));