Skip to content

Application

Source: src/AWS/AppRegistry/Application.ts

An AWS Service Catalog AppRegistry application — the top-level node that groups related cloud resources and metadata under a single logical application (surfaced in myApplications and the awsApplication tag).

Basic Application

import * as AppRegistry from "alchemy/AWS/AppRegistry";
const app = yield* AppRegistry.Application("Storefront", {});

Application with Description and Tags

const app = yield* AppRegistry.Application("Storefront", {
applicationName: "storefront",
description: "Customer-facing storefront services",
tags: { team: "commerce" },
});