...

/

AWS Serverless Application Project

AWS Serverless Application Project

Learn the structure of an AWS serverless application project.

What does a serverless application look like?

A serverless application can contain more than one function handler and perform several different functionalities. When it comes to .NET, a serverless application is an ASP.NET Core web application hosted within AWS. Usually, it can be launched as a standard ASP.NET Core web application. However, it has some additional dependencies that allow it to run on AWS.

The playground shows an example of a serverless application. This is an ASP.NET Core Web API application with a calculator controller that allows us to perform various math operations on two numbers.

{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft.AspNetCore": "Warning"
    }
  },
  "AllowedHosts": "*"
}
AWS serverless application project

A serverless ASP.NET ...

Access this course and 1400+ top-rated courses and projects.