skip to Main Content

AWS Lambda

Lambda - server less application - lets you run code without provisioning or managing servers.  You only pay for the compute time you consume - no charge when your code is not running. No provisioning of servers Compute services where…

Read more

AWS Elastic Load Balancing

Elastic Load Balancing automatically distributes incoming application traffic across multiple targets, such as Amazon EC2 instances, containers, and IP addresses. It can handle the varying load of your application traffic in a single Availability Zone or across multiple Availability Zones.…

Read more

AWS EC2

EC2 = Elastic Compute Cloud Compute capacity in the cloud Allows you to quickly scale capacity up and down Virtual Machines in the cloud Pay only for capacity you actually use NOTE: Root volumes by default are deleted when terminated! …

Read more

AWS ElastiCache

ElastiCache improves performance of web applications by allowing you to retrieve info from fast, managed, in-memory system. Amazon ElastiCache works as an in-memory data store and cache to support the most demanding applications requiring sub-millisecond response times. By utilizing an…

Read more

AWS IAM

IAM = Identity Access Management Securely control access to AWS services and resources for your users Create and manage users / groups No region IAM is available throughout the world Access key or Secret access key can only be used…

Read more

AWS VPC

VPC - Virtual Private Cloud One subnet = one Availability Zone Hourly rate is free to use VPC but pay for VPN, NAT Gateway Use a NAT Gateway or NAT instance to allow outbound traffic for a private subnet, but…

Read more

AWS CloudFront

CDN = Content Delivery Network - a system of distributed servers that deliver web pages and other web content to a user based on the geo location of the user. You can clear cached objects but you are charged for…

Read more

AWS S3

S3 - Simple Storage Service Object based storage - flat files S3 is a universal namespace - unique names for buckets HTTP 200 successful upload code Format of bucket names: http://s3-aws-region.amazonaws.com/bucket (https://s3-us-east-1.amazonaws.com/bucketname) Bucket site hosting URL: http://examplebucket.s3-website-us-west-2.amazonaws.com/ Data consistency model…

Read more

AWS DynamoDB

Amazon DynamoDB is a fast and flexible NoSQL database service for all applications that need consistent, single-digit millisecond latency at any scale. It is a fully managed cloud database and supports both document and key-value store models. Its flexible data model, reliable…

Read more
Back To Top