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).
Reading Application Metadata
Section titled “Reading Application Metadata”// init — bind the operation to the applicationconst getApplication = yield* AWS.AppRegistry.GetApplication(app);
// runtimeconst details = yield* getApplication();console.log(details.name, details.associatedResourceCount);