0

I'm new to AWS and I am trying to develop my first lambda function with Visual Studio code.

I have created my Hello world Lambda function using Amazon Lambda Tools for .NET Core applications (4.3.0):

dotnet new lambda.EmptyFunction helloworldcsharp.

After that i deployed it to my AWS account using

dotnet lambda deploy-function helloworldcsharp

I got and success result and when i list my functions from the CLI I get the function listed back to me.

Going to the AWS web console on the other hand I can't see the lambda function listed among the others I created online.

AWS Lambda Console functions

I thought I could be using a wrong profile but that is not the case since I see the roles I have in my account when I am deploying the function.

How can I "add" or list the functions created through Amazon lambda Tools for .NET in my account? Am I doing something wrong and deploying it locally, somehow?

1 Answer 1

3

Make sure first in which region you have deployed your function (region is in your profile). And then select the same region at the top right corner in the AWS console.

Lambda is displayed per region.

Sign up to request clarification or add additional context in comments.

1 Comment

Thank you TaiT's, that was indeed the case, I was looking at the wrong region.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.