the-ldk
Version:
Welcome to the LDK! A collection of custom AWS CDK constructs to help you build serverless applications faster.
19 lines • 956 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ExampleAppStack = void 0;
const aws_cdk_lib_1 = require("aws-cdk-lib");
const APIGatewayStack_1 = require("./stacks/APIGatewayStack");
const ExpressStepFunctionStack_1 = require("./stacks/ExpressStepFunctionStack");
const LambdaFunctionStack_1 = require("./stacks/LambdaFunctionStack");
const app = new aws_cdk_lib_1.App();
class ExampleAppStack extends aws_cdk_lib_1.Stack {
constructor(scope, id, props) {
super(scope, id, props);
new APIGatewayStack_1.ExampleAPIGatewayStack(this, 'ExampleAppAPIGatewayStack');
new ExpressStepFunctionStack_1.ExampleExpressStepFunctionStack(this, 'ExampleAppStepFunctionStack');
new LambdaFunctionStack_1.ExampleLambdaFunctionStack(this, 'ExampleAppLambdaFunctionStack');
}
}
exports.ExampleAppStack = ExampleAppStack;
new ExampleAppStack(app, 'ExampleAppStack');
//# sourceMappingURL=App.js.map