gpt4 book ai didi

amazon-web-services - 如何在 SAM 模板中添加自定义名称 Lambda 函数、API 网关和阶段名称

转载 作者:行者123 更新时间:2023-12-04 01:07:12 29 4
gpt4 key购买 nike

我正在尝试使用 SAM 模板。
在这里,我试图弄清楚如何在模板中添加自定义名称。
当我打包和部署模板时,它会创建带有附加字母数字值的 lambda 函数。
API 网关名称将是堆栈名称,它将部署在 API 网关中的“Prod”和“Stage”阶段。
有没有办法拥有我自己的自定义名称。
这是我的 SAM 模板示例代码:

AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: An AWS Serverless Specification template describing your function.
Resources:
GetAllUser:
Type: AWS::Serverless::Function
Properties:
CodeUri: code/
Handler: getAllUser.lambda_handler
Timeout: 5
Runtime: python3.8
Role: lambda_execution
MemorySize: 128
Events:
GetAllUser:
Type: Api
Properties:
Path: /get-all-user
Method: get

任何人都可以帮助我吗?

最佳答案

要为您的 lambda 创建名称,您可以直接指定 AWS::Serverless::Function

AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: An AWS Serverless Specification template describing your function.
Resources:
GetAllUser:
Type: AWS::Serverless::Function
Properties:
FunctionName: "MyFunctionName"
CodeUri: code/
Handler: getAllUser.lambda_handler
Timeout: 5
Runtime: python3.8
Role: lambda_execution
MemorySize: 128
Events:
GetAllUser:
Type: Api
Properties:
Path: /get-all-user
Method: get
至于其他名称,如 StageNameApiGateway Name ,你需要使用
AWS::Serverless::Api
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: AWS SAM template with a simple API definition
Resources:
ApiGatewayApi:
Type: AWS::Serverless::Api
Properties:
StageName: prod
Name: myapi
ApiFunction: # Adds a GET api endpoint at "/" to the ApiGatewayApi via an Api event
Type: AWS::Serverless::Function
Properties:
FunctionName: myfunction
Events:
ApiEvent:
Type: Api
Properties:
Path: /
Method: get
RestApiId:
Ref: ApiGatewayApi
Runtime: python3.7
Handler: index.handler
InlineCode: |
def handler(event, context):
return {'body': 'Hello World!', 'statusCode': 200}

关于amazon-web-services - 如何在 SAM 模板中添加自定义名称 Lambda 函数、API 网关和阶段名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66060274/

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