답변:
예!
람다 기능 설정으로 이동하면 오른쪽 상단에 " Actions
" 버튼이 있습니다 . 드롭 다운 메뉴에서 " export
"를 선택 하고 팝업에서 "배포 패키지 다운로드"를 클릭하면 기능이 .zip
파일로 다운로드 됩니다.
code
에서 찾을 수 location
있습니다. 기능을 다운로드하는 데 사용할 수있는 사전 서명 된 URL입니다. URL은 10 분 동안 유효합니다.
.zip
확장자가 없으므로 Windows의 일반 파일 일뿐입니다. 해결책은 다운로드 후 파일 이름에 확장자를 수동으로 추가하는 것입니다.
업데이트 : sambhaji-sawant의 스크립트 링크가 추가되었습니다 . 댓글을 기반으로 오타 수정, 답변 및 스크립트 수정!
aws-cli 를 사용 하여 람다의 우편 번호를 다운로드 할 수 있습니다 .
먼저 URL을 lambda zip으로 가져와야합니다.
$ aws lambda get-function --function-name $functionName --query 'Code.Location'
그런 다음 wget / curl을 사용하여 URL에서 zip을 다운로드해야합니다.
$ wget -O myfunction.zip URL_from_step_1
또한 다음을 사용하여 AWS 계정의 모든 기능을 나열 할 수 있습니다
$ aws lambda list-functions
AWS 계정에서 모든 람다 함수를 병렬로 다운로드하는 간단한 bash 스크립트를 만들었습니다. 여기서 볼 수 있습니다 :)
참고 : 위 명령 (또는 aws-cli 명령)을 사용하기 전에 aws-cli를 설정해야합니다. aws configure
주어진 지역의 모든 기능을 다운로드하려면 내 해결 방법이 있습니다. 함수를 다운로드하는 간단한 노드 스크립트를 만들었습니다. 필요한 모든 npm 패키지를 설치하고 스크립트를 실행하기 전에 AWS CLI를 원하는 리전으로 설정하십시오.
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()
let { Functions: getAllFunctionListResult } = JSON.parse(await getAllFunctionList());