Glossary
Short definitions for jargon the course assumes but does not teach as a first-class topic. In other pages, hover an underlined term for a quick reminder, this page is the full list with optional links to learn more.
All terms
Availability Zone
An isolated data-centre location inside an AWS Region. Spreading resources across multiple AZs keeps an app up if one facility fails.
CIDR
A compact way to write an IP range (e.g. 10.0.0.0/16). The number after the slash is how many bits are fixed; the rest are free for hosts.
Client VPN
A managed VPN endpoint that lets remote workers’ laptops join your VPC securely, as if they were on the corporate network.
Cold start
The extra latency the first time a serverless function runs after being idle, the runtime must be provisioned and your code loaded before it handles the request.
Direct Connect
A dedicated private fibre link between your data centre and AWS, more consistent than a VPN over the public internet.
ENI
A virtual network card in a VPC. EC2 instances and Lambda-in-VPC get one (or more) ENIs, security groups and private IPs attach here.
Internet Gateway
A horizontally scaled VPC component that lets resources in public subnets talk to the internet (and vice versa).
NAT Gateway
A managed AWS service that lets instances in private subnets make outbound internet calls without accepting unsolicited inbound connections.
On-premises
Infrastructure you run yourself (office, colo, or owned data centre), as opposed to cloud-managed resources in AWS.
PrivateLink
Private connectivity to a service (yours or a partner’s) over the AWS network, without exposing it on the public internet. Often used for SaaS into your VPC.
SaaS
Software delivered as a hosted product you subscribe to (e.g. Slack, Datadog), rather than software you install and operate yourself.
Target group
A load-balancer grouping of backends (instances, IPs, or Lambda). The ALB/NLB health-checks these targets and only sends traffic to healthy ones.
Transit Gateway
A regional hub that connects many VPCs and on-premises networks. Prefer this over a mesh of peering links when you have more than a few networks.
VPC peering
A private network connection between two VPCs so resources can talk using private IPs as if they were on one network. Not transitive across a third VPC.