Retrieving Error Information
Understand how to catch and retrieve error information in AWS Lambda applications using C#. This lesson covers handling exceptions within Lambda functions, viewing serialized error details, and managing multilevel exceptions to improve error tracking and resolution in serverless architectures.
We'll cover the following...
Error handling is important for any application, and AWS Lambda is no different. AWS Lambda fully supports a standard way of handling errors for the programming language it’s written in, such as try/catch blocks. However, because AWS Lambda functions are typically used in a bigger distributed application that has specialized workflow components for handling errors, they also support other error-handling mechanisms. In this lesson, we’ll look at both ways of handling ...