gpt4 book ai didi

aws-lambda - 如何使用 boto3 部署 lambda 函数?

转载 作者:行者123 更新时间:2023-12-03 07:34:45 25 4
gpt4 key购买 nike

我之前在nodejs中使用了以下方式部署lambda函数。

    await aws.command(
`cloudformation package \
--template-file ${template} \
--output-template-file ${serverless} \
--s3-bucket ${bucketName}`
).then(function (data) {
console.log('cloudformation packaging data=', data)
})
console.log('server deploying...')
await aws.command(
`cloudformation deploy \
--template-file ${serverless} \
--stack-name ${stackName} \
--capabilities CAPABILITY_IAM`
).then(function (data) {
console.log('cloudformation deploying data=', data)
})

这是我的cloudformation模板文件。

AWSTemplateFormatVersion: 2010-09-09
Transform: AWS::Serverless-2016-10-31
Resources:
ExportServer:
Type: AWS::Serverless::Function
Properties:
Handler: src/server.handler
Runtime: nodejs12.x
Events:
AnyRequest:
Type: Api
Properties:
Path: /graphql
Method: ANY

但现在我需要在 python 中使用 boto3 来完成它。

请给我任何建议。

最佳答案

关于aws-lambda - 如何使用 boto3 部署 lambda 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65296692/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com