View on GitHub

reading-notes

Readings: AWS: S3 and Lambda

Reading

AWS S3

What is Amazon S3?

S3 stands for Amazon Simple Storage. Its a cloud storage service provided by AWS.

Name some use cases for Amazon S3.

Name some benefits of using Amazon S3.

AWS Lambda Basics

What is AWS Lambda?

AWS Lambda is a serverless compute service that allows you to run code in response to events or automatically scale the underlying infrastructure.

Name some use cases for AWS Lambdas.

Describe “serverless” to a non-technical friend.

The code is run in response to events. serverless computing allows you to run code without having to worry about the servers that it is running on. AWS Lambda is a service that makes it easy to use serverless computing by providing a simple way to run your code and automatically scaling the infrastructure as needed.

CDN

What is a CDN?

A CDN is a content delivery network. Its a way to delivery web content to users based on their geographic location

How does a CDN work with relation to the website visitor?

A content delivery network (CDN) works by replicating content from a central location and storing it on servers located in multiple data centers around the world, and then delivering the content from the nearest server to the user’s location when a user requests it, in order to improve the speed and performance of the website or service.

What are the benefits of employing a CDN?

The benefits of employing a content delivery network (CDN) include improved performance and availability of websites and other web-based services, reduced load on the origin server, and protection against distributed denial-of-service (DDoS) attacks.

Reflection

What are your learning goals after reading and reviewing the class README?

My primary goal is to have a firm and comfortable understanding of the workflow using all AWS features, especially the AWS Lambda.