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.
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?