2 Answers
- Newest
- Most votes
- Most comments
2
=>Check IAM Permissions =>Update IAM Policy =>If you are an IAM administrator, review and update your IAM policies.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "lambda:*",
"Resource": "*"
}
]
}
=>Check AWS Organizations
=>Update Node.js Runtime:
aws lambda update-function-configuration --function-name YOUR_FUNCTION_NAME --runtime nodejs16.x
=>Access AWS Support Center =>Create a Support Case =>Provide Detailed Information:
0
Try to Update Lambda Function Runtime via CLI:
aws lambda update-function-configuration --function-name YOUR_FUNCTION_NAME --runtime nodejs18.x
Replace YOUR_FUNCTION_NAME with the name of your Lambda function.
If the above steps do not resolve the issue, you may need to contact AWS Support for further assistance. Here's how you can do that:
- Log in to the AWS Management Console with an account that has the necessary permissions.
- Navigate to the Support Center:
- Click on your account name in the top-right corner.
- Select "Support Center" from the dropdown menu.
- Open a Support Case:
- Click on the "Create case" button.
- Choose "Technical support".
- Fill in the necessary details about your issue.
- Select the severity level based on how critical the issue is to your operations.
- Submit the case and wait for AWS Support to respond.
Relevant content
- asked 7 months ago
- asked 3 years ago

Please accept the answer if it was useful