Skip to main content

Menu

LEVEL 0
0/5 XP
HomeAboutTopicsPricingMy VaultStats

Categories

πŸ€– Artificial Intelligence
☁️ Cloud and Infrastructure
πŸ’Ύ Data and Databases
πŸ’Ό Professional Skills
🎯 Programming and Development
πŸ”’ Security and Networking
πŸ“š Specialized Topics
HomeAboutTopicsPricingMy VaultStats
LEVEL 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

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

  • AWS Cloud Services Cheat Sheet
  • AWS CloudFormation Cheat Sheet
  • Cloud Compliance and Governance Cheat Sheet
  • Cloud Deployment Architectures Cheat Sheet
  • Cloud Pricing Models and Commitments Cheat Sheet
  • GCP BigQuery Cheat Sheet
View all 40 topics in Cloud Computing