Daniel Jonsén
Daniel Jonsén
This is all doable using Cognito Identity as has been mentioned in a separate issue, but it 's not something that has been well documented/tested. I spent some time to...
First of all, I'm greatly looking forward to this. I've myself experimenting with Aspire and AWS CDK. ### Separate Project One thing that comes to mind after your most recent...
> The CloudFormation Stack support is foundational for CDK and distributing them over multiple packages might make it harder to pick what is needed for your application. My thinking was...
@vlesierse Is the intent to still support usage via CDK CLI?
I was in partial considering the CLI support from a local development perspective. The current implementation which provisions resources on F5 and has no dependency on the CLI or Node...
@normj The end goal is both local development and deployment information. This PR only focuses on providing a way to express our Lambda Functions in an "Aspirey-way" so that any...
@normj I agree about event sources and have removed it. If a custom local development-runtime can support event sources then that package can introduce extensions for it instead. I added...
### API Update and Local Development ```csharp var builder = DistributedApplication.CreateBuilder(args); // Executable Projects builder.AddLambdaFunction("api"); builder.AddLambdaFunction("executableApi"); // Class Library builder.AddLambdaFunction("orderFunction"); // Non .NET Runtime or .NET not part of solution...
@normj , have you had any time to look at this? To summarize: - Generate metadata from referenced Lambda Projects for Lambda Function annotation in the AppHost and enable handler...
@davidfowl an e2e test is failing. Should I push a commit to re-trigger?