change lambda to no longer use zip deployment package

0

I have a lambda function that had been using a zip file deployment package in order to include some python modules. I have added a layer that includes the required packages so I only need my source code in the console editor. How can I remove the deployment package and have my function source in the editor window?

질문됨 2년 전1086회 조회
2개 답변
0

Hi there

I understand you want to remove a layer on your lambda function, please run this command on your aws CLI "aws lambda delete-layer-version --layer-name my-layer --version-number 1" Note when you delete a layer version, you can no longer configure a Lambda function to use it. However, any function that already uses the version continues to have access to it.

Hope this helps.

References:

https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html#configuration-layers-delete

답변함 2년 전
  • Thanks for the quick response. I may not have been clear. I want to delete the zip deployment package, not the layer. I created another function with a zip deployment package, no layers. When I do a "aws lambda list-functions" no layers are shown for this new function. I don't see anything in the cli docs that lets me add or delete the zip package.

0

What you can do is create a ZIP file with only one file in it - the one containing your code. Update the Lambda function with that ZIP file as you have previously been doing. Then your file will show up in the Lambda console code editor.

profile pictureAWS
전문가
답변함 2년 전
  • @Brettski@AWS is correct, however, using the console to edit code is not really recommended. I would recommend that you use SAM CLI and SAM Templates to define your functions and deploy them.

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠