Vincent Lesierse
Vincent Lesierse
> Exemption Request This PR doesn't contain any functional code changes and only covers package naming.
There are many more packages which aren't correct. ``` Amazon.CDK.AwsArczonealshift Amazon.CDK.AwsB2Bi Amazon.CDK.AwsBackupgateway Amazon.CDK.AwsCleanrooms Amazon.CDK.AwsDatazone Amazon.CDK.AwsEntityresolution Amazon.CDK.AwsHealthimaging Amazon.CDK.AwsMediapackagev2 Amazon.CDK.AwsNeptunegraph Amazon.CDK.AwsOsis Amazon.CDK.AwsPcaconnectorad Amazon.CDK.AwsProton Amazon.CDK.AwsS3Express Amazon.CDK.AwsShield Amazon.CDK.AwsVerifiedpermissions Amazon.CDK.AwsWorkspacesthinclient Amazon.CDK.AwsWorkspaceweb ``` I can expand...
@mrgrain I have pushed the fix for the other packages are well. Apparently in the `_jsiirc.json` files the `dotnet` sections are set to `package` instead of `namespace`
@normj that is exactly how it is implemented. This means that the Lambda Tools need to be installed. If not, it will build from a container which has the tools...
@ReubenBond thank you for the feedback! Yes, I started with experimenting of building the stack within Aspire in [this branch](https://github.com/vlesierse/aspire/tree/aws-cdk). My first focus will be to rebase this PR on...
Ok, after some busy weeks, I have picked up this PR again. First step is a rebase onto the work of @normj with the CloudFormation support. I have a made...
Building a CDK Stack has been made easier by using Construct resources. I still need to annotate the resource states correctly, but in general it works like this... ```csharp var...
Next steps could be to compose list of most used resources and make convenient methods for these resources like; ```csharp var stack = builder.AddAWSCDKStack("Stack").WithReference(awsConfig); var table = stack.AddDynamoDBTable("Table"); var queue...
Getting closer to building AWS CDK stacks. ```csharp // Create a Distributed Application builder and enable AWS CDK, needed to host the App construct and attach the stack(s) var builder...
@djonser thank you for your feedback and mentioning some important points. > One thing that comes to mind after your most recent commit. Would it not be better to have...