Samuel Marchal
Samuel Marchal
I was about to open a similar issue. +1
@peterwoodworth Reproduction is now straightforward: 1. Use `apigw.Model.EMPTY_MODEL` anywhere 2. Upgrade CDK to 2.41.0 Will fail anytime because of JSII being forced to `>=1.67.0`
Related issue: https://github.com/aws/jsii/issues/3742
Actually, if you really need CDK 2.41.0+, it is possible to overcome the issue by using `apigw.Model.from_model_name()` instead of these broken properties: ```py # Replace apigw.MethodResponse( status_code = "200", response_models...
You're both getting a notice. A warning that had been added since, waiting for the fix. Not the error itself.
In my understanding, it's not a bug at all, regarding the fact that stack updates requires CloudFormation models comparison. At first glance it can be quite surprising, mostly because we'll...
To prevent to hit Cloudformation limits, is there a way in CDK to resolve the domain endpoint once in a variable, instead of resolving it once per task definition /...
> You can work around this issue by using CDK's dependency mechanism to slow down the API requests. Node dependencies are a great workaround, I've been able to use them...
Same issue as #515
Plus, the `npm` commands may fail because we'll run it on our local machine (therefore having various Node versions). For example, it is failing with Node 15, I had to...