简体   繁体   中英

How do you view your folders uploaded to AWS Management Console?

I made a recent deploy to AWS Lambda and need to view the folders which were uploaded in order to troubleshoot.

When viewing the code source, all I see is:

在此处输入图像描述

Is there any other way besides the code editor where it lists the folders and resources that have been uploaded to AWS Lambda after a deployment?

If you upload your code in the AWS console when you create the Lambda function, then it is stored in an Amazon S3 location that you cannot access. You can't access the Lambda service's S3 bucket(s) directly, but you can download the code you previously uploaded to your Lambda function.

Go to the AWS Lambda console -> select your Lambda function -> then click Actions -> Export function -> click Download deployment package. Note: if your code was written in Java (or other compiled language) then the download will contain compiled files, not the original source code. 导出源代码

If you upload your source code to your own S3 bucket before creating the Lambda function, then you will know the path to your source code.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM