Hi Reader ππ½
Welcome to our latest newsletter, where we explore the fundamentals of AWS networking.
Before we jump into the content, a question to get you started: What's Amazon's biggest customer on AWS? π₯ Maybe you already know, but if not, the answer is on the end of the issue.
Whether you're new to AWS or a seasoned pro, understanding the ins and outs of networking is crucial for building reliable and scalable applications. In this edition, we'll cover the basics of VPC, Route 53, API Gateway, and CloudFront, and how they work together to create a robust network infrastructure.
AWS has come a long way since its inception, and we'll show you how to leverage its powerful networking tools to build modern applications that can handle even the heaviest traffic.
So, grab a cup of coffee and let's dive into the world of AWS networking! βοΈ
Itβs important to understand the fundamental principles of modern networking infrastructure. They provide the foundation for communication and data transfer between different components and services of our applications. A well-designed network infrastructure is essential for ensuring that an application is highly available, secure, and scalable.
β
AWS API Gateway is a fully managed service for creating, deploying, and managing APIs. It allows you to create RESTful and WebSocket APIs. It also comes with advanced features such as authentication, caching, and monitoring which donβt require you to write much or any code.
AWS API Gateway offers three different options, each with unique features and pricing. Hereβs a quick overview:
Choosing the right gateway ultimately depends on your specific requirements.
API Gateway is more than just an HTTP mediator. Itβs a valuable and feature-packed front door to your application ecosystem, with minimal errors.
When it comes to REST or HTTP gateways, an API consists of programmable resources that can map to one or multiple HTTP methods and a specific or wildcard path that covers a set of paths.
Each resource must be connected to an integration endpoint, which can be a Lambda function or any HTTP-speaking endpoint. You can choose to forward the request as-is or apply transformations that modify the request to match the backendβs expectations, including validations. After receiving the response from the integration, you can apply response transformations before returning it to the client.
Hereβs a summary of the core capabilities that will be explored in detail in the following paragraphs:
AWS API Gateway is considered a core service of AWS because it provides a crucial layer for managing and securing APIs that are used to access AWS services and resources. It acts as a front door for applications to access AWS resources and services, allowing developers to create, publish, and manage APIs with ease.
Amazon Route 53 is a highly available and scalable Domain Name System web service. It allows you to register domain names and route internet traffic to your application. Its advanced features enable you to build applications that are available around the globe with low latency and can automatically deal with outages via failovers.
Route 53 is not just a simple Domain Name Service because it comes with advanced features that allow for traffic management and routing policies.
The different routing policies in Route 53 are:
Each routing policy allows for more advanced traffic management and can be used to optimize application performance, improve availability, and provide a better user experience.
Amazon Route 53 enables the creation of a highly resilient multi-region setup that offers fast responses through latency-based routing and automated failovers in case one region experiences issues.
Amazon VPC provides a logically isolated section of the AWS Cloud where you can launch resources in a virtual network. It provides you control over your virtual networking environment, including the selection of your own IP address range, the creation of subnets, and the configuration of route tables and network gateways. Youβre able to create distinct network subnets for private components to isolate them from the internet or other resources and strictly define how they can communicate with each other.
Amazon VPC comes with a large set of features that are essential to understand and implement to build a secure ecosystem on AWS:
Amazon VPC is considered one of AWSβ core services because it provides users with a secure and isolated environment in which to run their applications and services. It allows users to customize their network topology, configure IP addresses, and control inbound and outbound traffic using security groups and NACLs.
In the example provided, our application is running on Fargate tasks that are isolated from the database in their private subnets. Amazon VPC allows us to create customized network rules that specify which resources can communicate with each other and/or the internet.
Amazon CloudFront is a content delivery network (CDN) that securely delivers data, videos, applications, and APIs to customers globally with low latency, and high transfer speeds, all within a developer-friendly environment.
CloudFront's feature set is huge:
β
In the example provided, we are using a CloudFront function to redirect to different applications based on a cookie sent with the request. This is just one simple but powerful example of the many use cases for edge computing.
β
That's it for this issue! βοΈ
We hope you have a wonderful & successful week!
Sandro & Tobi π
β
P.S: the biggest customer is Netflix! πΏ There are no official numbers, but their monthly spendings are at least seven figures. πΈ
Interested in more? Have a read about how to build a multi-region Serverless application with latency-based routing & failover! βοΈ
Join our community of over 9,300 readers delving into AWS. We highlight real-world best practices through easy-to-understand visualizations and one-pagers. Expect a fresh newsletter edition every two weeks.
Newsletter Header AWS FOR THE REAL WORLD β±οΈ Reading time: 8 minutes π Main Learning: Migrating from Edgio to CloudFront βοΈ Blog Post π» GitHub Repository Hey Reader ππ½ this newsletter is about π₯ AI π€ We haven't talked too much about AI, Bedrock, MCPs, and agents yet - so we want to change that. Please let us know if this it interests you to build AI on AWS, or if you are much more interested on hands-on fundamentals services. Should we focus on AI Services? Yes, I want to learn to build...
Newsletter Header AWS FOR THE REAL WORLD β±οΈ Reading time: 8 minutes π Main Learning: Migrating from Edgio to CloudFront βοΈ Blog Post π» GitHub Repository Hey Reader ππ½ This newsletter edition is all about saving Lambda costs. I (Sandro is writing this one) was recently involved in saving Lambda costs for a client. So, I thought writing down my thought process was a good idea. Have fun with it! If you need help saving AWS costs or improving your infrastructure, just reply to this email! Now...
β Reading time: 8 minutes π Main Learning: Federated Authentication with Cognito πΎ GitHub Repository βοΈ Read the Full Post Online π Hey Reader ππ½ Federated Authentication lets users sign in to your app using their existing accounts - most prominently Google! This approach eliminates the need to create and remember new credentials (which most users are very happy for! β¨), improving user experience and likely increasing conversion rates. π With OAuth 2.0 and Google as an identity provider, we...