import type * as appregistry from "@distilled.cloud/aws/service-catalog-appregistry"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Application } from "./Application.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 * **Example:** Read the Application at Runtime * ```typescript * // 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); * ``` * * @binding */ export interface GetApplication extends Binding.Service Effect.Effect<() => Effect.Effect>> { } export declare const GetApplication: GetApplication; //# sourceMappingURL=GetApplication.d.ts.map