Skip to main content

Menu

LEVEL 0
0/5 XP
HomeAboutTopicsPricingMy VaultStatsPractice TestsCertifications

Categories

🎓 Certifications
🤖 Artificial Intelligence
☁️ Cloud and Infrastructure
💾 Data and Databases
💼 Professional Skills
🎯 Programming and Development
🔒 Security and Networking
📚 Specialized Topics
CheatGrid
HomeAboutTopicsPricingMy VaultStatsPractice TestsCertifications
LVLEVEL 0
0/5 XP
GitHub
© 2026 CheatGrid™. All rights reserved.
Privacy PolicyTerms of UseAboutContact

Amazon Web Services (AWS) - Core Cheat Sheet

Amazon Web Services (AWS) - Core Cheat Sheet

Back to Cloud Computing
Updated 2026-04-20
Next Topic: AWS Cloud Services Cheat Sheet

Amazon Web Services (AWS) is the world's most comprehensive cloud platform, offering over 200 fully featured services from 39 regions and 123 Availability Zones globally. AWS provides on-demand computing resources without upfront capital investment, transforming how organizations build, deploy, and scale applications. The platform operates on a pay-as-you-go pricing model and has expanded rapidly into generative AI with Amazon Bedrock, Amazon Nova foundation models, and Amazon Q Developer. One critical insight: AWS services are designed to work together seamlessly—understanding how EC2, VPC, IAM, and S3 interconnect is far more valuable than knowing each service in isolation.


What This Cheat Sheet Covers

This topic spans 20 focused tables and 160 indexed concepts. Below is a complete table-by-table outline of this topic, spanning foundational concepts through advanced details.

Table 1: Compute ServicesTable 2: Storage ServicesTable 3: S3 Storage ClassesTable 4: Database ServicesTable 5: Networking and Content DeliveryTable 6: VPC Networking ComponentsTable 7: Security, Identity, and ComplianceTable 8: Management and GovernanceTable 9: Monitoring and ObservabilityTable 10: Developer Tools and CI/CDTable 11: Messaging and StreamingTable 12: Analytics and Big DataTable 13: Machine Learning and AITable 14: Auto Scaling and High AvailabilityTable 15: Cost Optimization and Pricing ModelsTable 16: Disaster Recovery and BackupTable 17: Well-Architected Framework PillarsTable 18: Global Infrastructure ConceptsTable 19: Service Limits and QuotasTable 20: Tagging and Organization

Table 1: Compute Services

Compute is the engine room of AWS, and the options span a wide spectrum of control. At one end EC2 hands you full virtual servers with OS-level access; at the other, Lambda runs your code with no servers to manage and Fargate runs containers without you provisioning instances. The choice usually comes down to how much operational burden you want to keep versus delegate to AWS — and how your workload is packaged, whether as a plain process, a container, or an event handler.

ServiceExampleDescription
EC2 (Elastic Compute Cloud)
aws ec2 run-instances --image-id ami-0abcdef1234567890 --instance-type m8g.large
• Virtual servers in the cloud with full OS control
• supports Linux, Windows, macOS across instance families: general purpose (M8g), compute (C8g), memory (R8g), storage, accelerated
• Graviton4 ARM-based instances deliver up to 30% better price-performance
Lambda
exports.handler = async (event) => {
return { statusCode: 200, body: 'Hello' };
};
• Serverless compute — runs code in response to events
• pay per 100ms of compute time, auto-scales to thousands of concurrent executions
• SnapStart eliminates cold starts for Java, Python, and .NET
ECS (Elastic Container Service)
aws ecs create-cluster --cluster-name my-cluster
• Fully managed Docker container orchestration
• integrates natively with ALB, CloudWatch, IAM
• Express Mode (Nov 2025) simplifies deployment with production-ready defaults
EKS (Elastic Kubernetes Service)
eksctl create cluster --name prod-cluster --region us-west-2
• Managed Kubernetes running upstream K8s
• supports both EC2 and Fargate compute, Auto Mode for simplified cluster management

More in Cloud Computing

  • AI Cloud Infrastructure and Neocloud Providers Cheat Sheet
  • AWS Cloud Services Cheat Sheet
  • AI Agent Mesh and Agentic Cloud Infrastructure Cheat Sheet
  • Cloud Computing Basics Cheat Sheet
  • Cloud Pricing Models and Commitments Cheat Sheet
  • Google Cloud Platform - GCP Core Cheat Sheet
View all 57 topics in Cloud Computing