Skip to content

Latest commit

 

History

History
38 lines (22 loc) · 1.58 KB

README.md

File metadata and controls

38 lines (22 loc) · 1.58 KB

AWS Tutorials

This repository is to hold examples from my AWS Tutorials. My AWS Tutorials videos are available on YouTube.

Playlist: https://www.youtube.com/playlist?list=PLaBPUIXZ8s4DsFxrW9DJNKwEqLf6Ivt2m

Setting up a static website using AWS

This is a short tutorial on how to set up AWS S3 Bucket to host a simple static website. Files for the video are available under the static-website folder. The files are:

  • index.html
  • bucket-policy-example.json

Video: https://youtu.be/V99i16IZ_PU

How To Connect AWS API Gateway to Lambda

This is a short tutorial on how to connect AWS Gateway to a lambda function and update the CORS policy so that you can call your service from your static website host on an AWS S3 bucket. File for this video is available under the api-gateway-and-lambda folder.

Video: https://youtu.be/ZrwLBWSI_Sw

How to Read and Write to DynamoDB using AWS Lambda

This is a short tutorial on how to read and write to DynamoDB using AWS Lambda Functions. The files for this video is under dynamodb-and-lambda folder. The files are:

  • ReadMessage.js
  • WriteMessage.js

Video: https://youtu.be/f7o8RV3Edck

Putting it All Together (AWS Gateway API + Lambda+ DynamoDB)

In this tutorial, we are going to connect together everything we learned in the previous AWS Tutorial videos and make a static website that calls our API Gateway which then calls our Lambda Functions and finally writes to or reads from our DynamoDB. The files for this video is under api-gateway-dynamodb folder. The files are:

  • form.html
  • WriteMessage.js

Video: https://youtu.be/nPdp438SrIs