下载一个已经上传的Lambda函数

我在AWS (Python)中使用“upload .zip”创建了一个lambda函数 我丢失了那些文件,我需要做一些更改,有没有办法下载那个。zip?< / p >
123091 次浏览

是的!

导航到你的lambda函数设置,在右上角你会有一个名为“__abc0”的按钮。在下拉菜单中选择“;export"并在弹出窗口中点击“下载部署包”;该函数将在.zip文件中下载。

右上角的操作按钮

Step#1 .

上方CTA弹出(点击“下载部署包”;这里)

Step#2

更新:通过sambhaji-sawant添加了脚本链接。修正了错别字,改进了答案和基于评论的脚本!

你可以使用aws-cli来下载任何lambda的zip文件。

首先,您需要获取lambda zip的URL $ aws lambda get-function --function-name $functionName --query 'Code.Location' < / p > 然后你需要使用wget/curl从URL下载压缩文件。 $ wget -O myfunction.zip URL_from_step_1 < / p >

此外,您可以使用列出AWS帐户上的所有功能

$ aws lambda list-functions

我做了一个简单的bash脚本,从您的AWS帐户并行下载所有lambda函数。你可以看到 在这里:)

注意:在使用上述命令(或任何aws-cli命令)之前,您需要使用aws configure设置aws-cli

这里有完整的指南

你可以使用shell脚本可用在这里

如果你想下载给定区域中的所有函数,这里是我的解决方案。 我已经创建了一个简单的节点脚本下载功能。安装所有需要的npm包,并在运行脚本之前将AWS命令行设置为您想要的区域
let download = require('download-file');
let extract = require('extract-zip');
let cmd = require('node-cmd');


let downloadFile = async function (dir, filename, url) {
let options = {
directory: dir,
filename: filename
}
return new Promise((success, failure) => {
download(url, options, function (err) {
if (err) {
failure(err)
} else {
success('done');
}
})
})
}


let extractZip = async function (source, target) {
return new Promise((success, failure) => {
extract(source, { dir: target }, function (err) {
if (err) {
failure(err)
} else {
success('done');
}
})
})
}


let getAllFunctionList = async function () {
return new Promise((success, failure) => {
cmd.get(
'aws lambda list-functions',
function (err, data, stderr) {
if (err || stderr) {
failure(err || stderr)
} else {
success(data)
}
}
);
})
}


let getFunctionDescription = async function (name) {
return new Promise((success, failure) => {
cmd.get(
`aws lambda get-function --function-name ${name}`,
function (err, data, stderr) {
if (err || stderr) {
failure(err || stderr)
} else {
success(data)
}
}
);
})
}


let init = async function () {
try {
let { Functions: getAllFunctionListResult } = JSON.parse(await getAllFunctionList());
let getFunctionDescriptionResult, downloadFileResult, extractZipResult;
getAllFunctionListResult.map(async (f) => {
var { Code: { Location: getFunctionDescriptionResult } } = JSON.parse(await getFunctionDescription(f.FunctionName));
downloadFileResult = await downloadFile('./functions', `${f.FunctionName}.zip`, getFunctionDescriptionResult)
extractZipResult = await extractZip(`./functions/${f.FunctionName}.zip`, `/Users/malhar/Desktop/get-lambda-functions/final/${f.FunctionName}`)
console.log('done', f.FunctionName);
})
} catch (e) {
console.log('error', e);
}
}




init()

你可以找到一个python脚本来下载所有的lambda函数在这里

import os
import sys
from urllib.request import urlopen
import zipfile
from io import BytesIO


import boto3


def get_lambda_functions_code_url():


client = boto3.client("lambda")


lambda_functions = [n["FunctionName"] for n in client.list_functions()["Functions"]]


functions_code_url = []


for fn_name in lambda_functions:
fn_code = client.get_function(FunctionName=fn_name)["Code"]
fn_code["FunctionName"] = fn_name
functions_code_url.append(fn_code)


return functions_code_url




def download_lambda_function_code(fn_name, fn_code_link, dir_path):


function_path = os.path.join(dir_path, fn_name)
if not os.path.exists(function_path):
os.mkdir(function_path)


with urlopen(fn_code_link) as lambda_extract:
with zipfile.ZipFile(BytesIO(lambda_extract.read())) as zfile:
zfile.extractall(function_path)




if __name__ == "__main__":
inp = sys.argv[1:]
print("Destination folder {}".format(inp))
if inp and os.path.exists(inp[0]):
dest = os.path.abspath(inp[0])
fc = get_lambda_functions_code_url()
print("There are {} lambda functions".format(len(fc)))
for i, f in enumerate(fc):
print("Downloading Lambda function {} {}".format(i+1, f["FunctionName"]))
download_lambda_function_code(f["FunctionName"], f["Location"], dest)
else:
print("Destination folder doesn't exist")

这是我使用的bash脚本,它下载了默认区域中的所有函数:

download_code () {
local OUTPUT=$1
OUTPUT=`sed -e 's/,$//' -e 's/^"//'  -e 's/"$//g'  <<<"$OUTPUT"`
url=$(aws lambda get-function --function-name get-marvel-movies-from-opensearch --query 'Code.Location' )
wget $url -O $OUTPUT.zip
}


FUNCTION_LIST=$(aws lambda list-functions --query Functions[*].FunctionName)
for run in $FUNCTION_LIST
do
download_code $run
done


echo "Finished!!!!"