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

AWS Cloud Services Cheat Sheet

AWS Cloud Services Cheat Sheet

Back to Cloud Computing
Updated 2026-03-17
Next Topic: AWS CloudFormation Cheat Sheet

Amazon Web Services (AWS) is the world's most comprehensive and widely adopted cloud platform, offering over 200 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.

What This Cheat Sheet Covers

This topic spans 15 focused tables and 141 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 Management & OptimizationTable 14: Migration & Transfer ServicesTable 15: Pricing Models & Purchase Options

Table 1: Compute Services

ServiceExampleDescription
Amazon EC2 (Elastic Compute Cloud)
aws ec2 run-instances --image-id ami-0c55b159cbfafe1f0 --instance-type t3.micro
• Virtual servers providing scalable compute capacity in the cloud
• offers 150+ instance types optimized for compute, memory, storage, or GPU workloads 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 Lightsail
aws lightsail create-instances --instance-names my-server --blueprint-id wordpress
• Simplified virtual private server with predictable monthly pricing starting at $3.50
• ideal for simple web apps, dev/test environments, and small databases without complex AWS configurations.
AWS Batch
aws batch submit-job --job-name my-job --job-definition my-def --job-queue my-queue
• Fully managed batch processing at any scale that dynamically provisions optimal compute resources based on job requirements
• handles job scheduling, retries, and dependencies across EC2 or Fargate.

More in Cloud Computing

  • Amazon Web Services (AWS) - Core Cheat Sheet
  • AWS CloudFormation Cheat Sheet
  • Azure Cloud Computing Core Cheat Sheet
  • Cloud Cost Optimization Strategies Cheat Sheet
  • Cloud Migration Cheat Sheet
  • GCP BigQuery Cheat Sheet
View all 40 topics in Cloud Computing