In the previous section, we used Visual Studio and the AWS Toolkit to create our first AWS Lambda function with C#. Now we will create a more complex serverless project that contains Lambda functions and the API Gateway. We are going to use the AWS Toolkit and Visual Studio to create a serverless project. We will also explore the generated source code and deploy and test the project.
- Go to Visual Studio 2015 and create a new serverless project. Select File | New | Project.
- Select AWS Serverless Application and click OK.
- We are creating a little bit more complex application, so select the Blog API using DynamoDB.
- Our serverless project has been created. There are two files that have been generated for us, Blog.cs file and Functions.cs file, as shown here:
![](https://static.packt-cdn.com/products/9781789340198/graphics/assets/f45640e2-e8fb-493d-9257-36d2df366df8.png)
In the Functions.cs file, we find the function handlers that are used to...