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

AWS Cloud Services Cheat Sheet

AWS Cloud Services Cheat Sheet

Back to Cloud Computing
Updated 2026-05-25
Next Topic: AWS CloudFormation Cheat Sheet

Amazon Web Services (AWS) is the world's most comprehensive and widely adopted cloud platform, offering over 240 fully featured services from data centers globally. AWS enables organizations to move faster, lower IT costs, and scale applications through a pay-as-you-go model that eliminates upfront infrastructure investment. Understanding AWS services requires recognizing that each service solves a specific problem within a broader cloud architecture — compute services run your code, storage services persist your data, networking services connect resources securely, and managed databases eliminate operational overhead, all working together to build resilient, scalable systems. In 2025–2026, AI has become a first-class citizen across the entire AWS stack, with Bedrock, Graviton5, S3 Vectors, and Lambda Durable Functions reshaping how applications are built and operated.

What This Cheat Sheet Covers

This topic spans 15 focused tables and 144 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: Database ServicesTable 4: Networking & Content DeliveryTable 5: Container & Orchestration ServicesTable 6: Security, Identity & ComplianceTable 7: Monitoring, Logging & ObservabilityTable 8: Messaging & Application IntegrationTable 9: Analytics & Data ProcessingTable 10: Application Integration & APIsTable 11: Developer Tools & CI/CDTable 12: Machine Learning & AI ServicesTable 13: Cost ManagementTable 14: Migration & Transfer ServicesTable 15: Pricing Models & Purchase Options

Table 1: Compute Services

The compute layer is where your application logic runs. AWS offers a spectrum from fully managed serverless functions to dedicated bare-metal servers, with the right choice depending on workload predictability, latency requirements, and how much infrastructure control you need.

ServiceExampleDescription
Amazon EC2 (Elastic Compute Cloud)
aws ec2 run-instances --image-id ami-0c55b159cbfafe1f0 --instance-type m9g.large
• Virtual servers providing scalable compute capacity in the cloud
• offers 150+ instance types optimized for compute, memory, storage, or GPU workloads; latest Graviton5-powered M9g instances deliver up to 25% better performance with per-second billing.
AWS Lambda
exports.handler = async (event) => {
return { statusCode: 200, body: 'Hello' };
};
• Serverless compute that runs code in response to events without provisioning servers
• supports up to 10GB memory, 15-minute timeout, and automatic scaling from zero to thousands of concurrent executions.
AWS Fargate
aws ecs run-task --launch-type FARGATE --task-definition my-task
• Serverless compute engine for containers that eliminates the need to manage EC2 instances
• works with ECS and EKS, allocating right-sized compute resources per container.
Amazon EC2 Auto Scaling
aws autoscaling create-auto-scaling-group --auto-scaling-group-name my-asg --min-size 2 --max-size 10
• Automatically adjusts EC2 instance count based on demand using target tracking, step, or scheduled policies
• maintains application availability and optimizes costs by scaling in during low traffic
AWS Lambda Managed Instances
aws lambda put-function-concurrency --function-name MyFunc --reserved-concurrent-executions 100
• Runs Lambda functions on managed EC2 instances with built-in routing, load balancing, and autoscaling
• provides EC2 pricing models and specialized hardware access while AWS handles all instance lifecycle management; supports EventBridge Scheduler for predictable capacity scaling.

More in Cloud Computing

  • Amazon Web Services (AWS) - Core Cheat Sheet
  • AWS CloudFormation 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