跳至內容

How to set Lambda function name?

0

I am developing Lambda (NET6) and use VS2022 Publish to AWS. It works but one question: When I see the Lambda functions list in AWS then I see long name (auto-generated) instead of my Lambda name "function-name" : "xx2aws" By the way: the description is applied.

Here is my file aws-lambda-tools-defaults.json

{ "profile" : "aws-admin", "region" : "eu-west-2", "configuration" : "Release", "s3-prefix" : "XX2AWS/", "template" : "serverless.template", "template-parameters" : "", "s3-bucket" : "bucketxx2aws", "stack-name" : "xx2awscustomers", ** "function-name" : "xx2aws",** "function-description" : "xx2aws beta" }

I cannot rename the Lambda after it is published. How this name can be assigned yo Lambda ?

已提問 3 年前檢視次數 1755 次

6 個答案
1

Function name can be assigned at the time of creation, for example if you are creating a Lambda function using cloud formation, the you can use FunctionName: <name>. If you don't specify a name, AWS CloudFormation generates one. So after an auto generated name has been assigned, then the closest thing you can do is assign Alias. Please follow the documentation shared below to create an alias. https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html

AWS

已回答 3 年前

1
專家

已回答 3 年前

0
已接受的答案

Need to use serverless.template file, instead of the aws-lambda-tools-defaults.json file.

"Type": "AWS::Serverless::Function", "Properties": { "FunctionName": "xx2aws", ... } ...

This way it works. But it is not clear what is the function name in the aws-lambda-tools-defaults.json, why we need it.

已回答 3 年前

0

The documentation here says to enter the function name when deploying the Lambda function, but this procedure does not set the function name?
I apologize if I am mistaken, but is deploying done differently than the procedure in the following document?
https://docs.aws.amazon.com/toolkit-for-visual-studio/latest/user-guide/lambda-creating-project-in-visual-studio.html#publish-to-lam

專家

已回答 3 年前

0

What is incorrect in my file? VS2022 publish Lambda to AWS successfully, The question how to set name,

已回答 3 年前

0

Your file looks correct, check if the Function Name is populating on the publish screen while you are Uploading Lambda to AWS. If you do not see the name in Function Name field then try to re create your json file using the following reference. https://github.com/iammukeshm/aws-lambda-dotnet-6/blob/master/HelloLambda/aws-lambda-tools-defaults.json

AWS

已回答 3 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。