AWS LAMBDA FOLDER - This folder contains all AWS lambda functions required to support functionality in MediaGRAB. - Each lambda function must be contained in its own folder i.e. a Lambda Function Deployment Package (Ref: http://docs.aws.amazon.com/lambda/latest/dg/lambda-dg.pdf pg 91). The package should contain the lambda function code and any other resources i.e. library dependencies. The package should be zipped and uploaded to AWS either via CLI or the aws console. Deploy updated AWS Lambda function: 1. Create a deployment package by going in your file explorer to the s3zipfunction folder. Select all files in the folder (i.e. index.js file & node_modules folder) and compress to a zip. NB: DO NOT COMPRESS the s3zipfunction folder as this will not work. 2. Login to AWS and access Lambda. 3. Select 'Functions' and select the 'mgS3Zipper' function (this is our function in Lambda). 4. Deploy the updated code by selecting the 'Code' tab and clicking "Upload" button, select the zip deployment package you created in step 1 & save.