├── .gitignore ├── LICENSE ├── Lesson02 ├── index.html ├── lambda_with_sns.js ├── s3_with_lambda.js └── sample.txt ├── Lesson04 ├── chocolate-bar-ratings │ └── flavors_of_cacao.csv └── total-business-inventories-to-sales-ratio.csv ├── Lesson05 ├── json2csv_transform.js ├── ka-reference-data.json └── kinesis-lambda-dynamodb-integration.js ├── README.md └── ServerlessArchitectureswithAWS_ColorImages.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | # Exclude tmp files 2 | ~* 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Serverless-Architectures-with-AWS/HEAD/LICENSE -------------------------------------------------------------------------------- /Lesson02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Serverless-Architectures-with-AWS/HEAD/Lesson02/index.html -------------------------------------------------------------------------------- /Lesson02/lambda_with_sns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Serverless-Architectures-with-AWS/HEAD/Lesson02/lambda_with_sns.js -------------------------------------------------------------------------------- /Lesson02/s3_with_lambda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Serverless-Architectures-with-AWS/HEAD/Lesson02/s3_with_lambda.js -------------------------------------------------------------------------------- /Lesson02/sample.txt: -------------------------------------------------------------------------------- 1 | Welcome to Lambda and S3 integration demo Class !! -------------------------------------------------------------------------------- /Lesson04/chocolate-bar-ratings/flavors_of_cacao.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Serverless-Architectures-with-AWS/HEAD/Lesson04/chocolate-bar-ratings/flavors_of_cacao.csv -------------------------------------------------------------------------------- /Lesson04/total-business-inventories-to-sales-ratio.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Serverless-Architectures-with-AWS/HEAD/Lesson04/total-business-inventories-to-sales-ratio.csv -------------------------------------------------------------------------------- /Lesson05/json2csv_transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Serverless-Architectures-with-AWS/HEAD/Lesson05/json2csv_transform.js -------------------------------------------------------------------------------- /Lesson05/ka-reference-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Serverless-Architectures-with-AWS/HEAD/Lesson05/ka-reference-data.json -------------------------------------------------------------------------------- /Lesson05/kinesis-lambda-dynamodb-integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Serverless-Architectures-with-AWS/HEAD/Lesson05/kinesis-lambda-dynamodb-integration.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Serverless-Architectures-with-AWS/HEAD/README.md -------------------------------------------------------------------------------- /ServerlessArchitectureswithAWS_ColorImages.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Serverless-Architectures-with-AWS/HEAD/ServerlessArchitectureswithAWS_ColorImages.pdf --------------------------------------------------------------------------------