We have completed deploying a Lambda function that handles processing service events. In this example we handled changes done to our DynamoDB Table but we could have just as easily used Lambda to handle events from S3 when objects are uploaded or when messages are sent to SQS queues. Lambda takes care of our scaling needs and we can focus on our business logic.
To recap in this section we covered:
- DynamoDB Streams
- Deploying Lambda Functions
- Configuring Event Sources for Lambda Functions
- Testing and Troubleshooting of Lambda functions
- Getting Started
- What is a serverless application?
- Common AWS Serverless Services
- What are we going to build in this tutorial?
- TODO List AWS Services Used
- Using DynamoDB to store TODO Lists
- Handling service events with Lambda
- Getting ASP.NET Core ready for Serverless
- Deploying ASP.NET Core as a Serverless Application
- Tear Down
- Final Wrap Up
Continue on to next page: Getting ASP.NET Core ready for Serverless