A Serverless architecture which allows you to have:
- Functions
- Events to dictate when functions should be called
 
Boilerplate Function
export const handler = async (event) => {
	// TODO implement
	const response = {
		statusCode: 200,
		body: JSON.stringify('Hello from Lambda!'),
	};
	return response;
};