Ejemplo n.º 1
0
        internal LambdaStack(Construct scope, string id, IStackProps props = null) : base(scope, id, props)
        {
            var config = new LambdaConfiguration()
            {
                FunctionName = id,
                Resource     = "./resources/function"
            };

            var lambda = new LambdaFunction(this);

            lambda.Construct(config);
        }