Updating Runtime to Lambda functions created by CDK

0

In my system there are two lambda functions that were created by CDK. The name of those lambdas are: BucketNotificationsHandler and CustomCDKBucketDeploymen.

Now those lambdas have the Runtime Python 3.9 and I want to update to Python 3.11.

What can I do?

已提問 3 個月前檢視次數 255 次
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>);

AWS
已回答 3 個月前
  • 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.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南