1 Answer
- Newest
- Most votes
- Most comments
1
Which template did you use?
The new serverless lambda template use the same convension as the new ASP.NET Core project template (only Program.cs without Startup.cs).
If you are using the new ASP.NET based template then you can add Parameter store store support to you Lambda function in the same way you add it to ASP.NET Core application (because the template you have selected (in Startup.cs):
var builder = WebApplication.CreateBuilder(args);
. . .
builder.Host.ConfigureAppConfiguration(((_, configBuilder) =>
{
configBuilder.AddSystemsManager("/myapplication");
}));
. . .
var builder = WebApplication.CreateBuilder(args);
. . .
answered 3 years ago
My VS2022 is updated. I have used the sequence AWS Serverless Application (.NET Core - c#) ASP.NET Core Web API It created the app with Startup and LocalEntryPoint.cs, LambdaEntryPoint.cs files
Relevant content
- asked 2 years ago
- asked 4 years ago
- AWS OFFICIALUpdated 9 months ago

I think doc link : https://docs.aws.amazon.com/systems-manager/latest/userguide/ps-integration-lambda-extensions.html , it good link to refer.