Skip to content

GetApplication

Source: src/AWS/AppRegistry/GetApplication.ts

Runtime binding for servicecatalog:GetApplication.

Reads the bound application’s metadata — description, tags, the awsApplication tag value, integrations, and the associated resource count. Provide the implementation with Effect.provide(AWS.AppRegistry.GetApplicationHttp).

// init — bind the operation to the application
const getApplication = yield* AWS.AppRegistry.GetApplication(app);
// runtime
const details = yield* getApplication();
console.log(details.name, details.associatedResourceCount);