1 回答
- 最新
- 投票最多
- 评论最多
1
The BucketNotificationsHandler lambda is an internal CDK lambda needed to apply bucket notification configurations. Please try to upgrade your CDK to the latest version. Python 3.11 is added to aws_lambda module with aws-cdk-lib 2.88.0. If this is not addressed, please open Github issue - it should be handled by the team. Alternatively, if you want to stick with your current version of cdk, you can opt for using escape hatches in CDK. Or simply add similar lines of code to force overrride: const handler = Stack.of(this).node.tryFindChild('BucketNotificationsHandler<ID>')?.node.defaultChild as cdk.CfnResource handler.addPropertyOverride("Runtime", <RUNTIME>);
已回答 10 个月前
相关内容
- AWS 官方已更新 1 年前
- AWS 官方已更新 4 年前
- AWS 官方已更新 3 年前
- AWS 官方已更新 1 个月前
Hello Evgeny,
Thank you for your support. I checked the version of the aws-cdk-lib and it has the version 2.118.0.
I'll open Github issue.
Thanks.