View on GitHub

General Notes

Compilations of General Notes on topics like git, aws, linux, ubuntu, scp, vscode, windows, github.

Serverless Architecture

Below notes are w.r.t AWS services

Key Benefits

Challenges

Core Serverless Services in AWS

Additional Serverless Services in AWS

Applications of Serverless

Frameworks for Serverless

AWS Lambda

Lambda Invocation Types

  1. Synchronous (Ex. API Gateway, Cognito events)
  2. Asynchronous (Ex. S3 Event)

Lambda Event Sources Types

  1. Push Events (Push data to invoke function, ex. S3 Event, API Gateway event)
  2. Pull.Poll Events (Lambda polls the event stream to look for events data, Ex. DynamoDB Stream Event, Kenesis Stream event)

Event Object holds input data that we want

Context Object provides useful run-time info, ex. How much time is remaining before timeout, what log group or log screening is associated with, what is request id and so on.

Throwing Error

exports.handler = (event, context, callback) => {
  const error = new Error("Error");
  callback(error);
};

Using Async

exports.handler = async (event, context) => {
  const error = new Error("Error");
  throw error;
};

API Gateway AWS Proxy Event is used for path param testing

Use Lambda Proxy Integration