Sen Lin, PrepPass 创始人 · 依据官方资料核对 the public AWS CLF-C02 exam guide · 我们如何核对
AWS Certified Cloud Practitioner (CLF-C02) — Complete Study Guide (2026) cover
AWS Certified Cloud Practitioner (CLF-C02) · 2026 版

AWS Certified Cloud Practitioner (CLF-C02) — Complete Study Guide (2026)

The whole CLF-C02 blueprint — cloud concepts & the Well-Architected Framework, security & the shared responsibility model, core AWS services, and billing & pricing — taught plainly, with a service cheat-sheet so you can name each service by its one job.

同一门考试,零头的价格
$300–$1,200$14.99

AWS Cloud Practitioner bootcamp/course 要 $300–$1,200。这本书讲的是同一门考试 —— 同样的规则、核对到最新标准 —— 只需一次性 $14.99,永久归你。

拥有整本书 — PDF + EPUB

练习题和计时模考永远免费。这本书是「学」的那一半:

  • 逐章系统讲解——每个考试章节按顺序讲透,不只是刷题
  • 可打印、贴标签——一本能划重点、做标记的纸质参考书
  • 离线可用——PDF 用来打印,EPUB 放进手机或阅读器
  • 全部在一个文件里——章节、速记卡和练习题都在一处
$14.99一次买断 · 永久下载 · 无订阅

14 天退款保证——不满意?发邮件即可全额退款,无需理由。 退款政策

本页可免费阅读第 1 章——先读后买。一次付款解锁整本书(PDF + EPUB · 带解析练习题 · 每章速记卡)。

即时下载 PDF + EPUB · 一次买断,永久归你 · 无订阅 · 14 天退款保证 · 还没决定? 在下方免费阅读完整一章

  • 官方来源核验(the public AWS CLF-C02 exam guide)
  • 420 道免费练习题
  • 即时下载,永久拥有
第 3 章 —— 免费在此阅读

完整的一章,与电子书正文一字不差。直接在此窗口滚动阅读;无需下载,无需邮箱。

我们没有拿轻松的绪论充数 —— 免费章节直接翻到书里最见功力的部分,让你在考试真正难的地方检验这本书讲得好不好。

免费试读 —— 就在这里读
第 3 章 · 占考试 34% · 约 9 分钟读完
CLOUD TECHNOLOGY AND SERVICES
向下滚动 ↓

This is the biggest domain, and it is mostly recognition: given a need described in a sentence, name the AWS service (or infrastructure concept) that meets it. You will not be asked to configure anything, but you must know, on sight, that a fully managed NoSQL database is DynamoDB, that object storage is S3, that a virtual server is EC2, and that a content delivery network is CloudFront. This chapter is organized the way AWS organizes its services — global infrastructure, ways to interact, then compute, storage, databases, networking, and the integration/management tools that tie them together. Learn each service by the one job it is famous for.

Teach the concept: AWS global infrastructure

AWS runs on a global infrastructure with three layers you must understand to reason about availability and latency.

Regions. A Region is a separate geographic area (for example, N. Virginia, Ireland, Tokyo, São Paulo). Each Region is fully isolated from the others, which supports fault tolerance and data residency. You choose a Region based on four factors the exam tests directly:

  1. Compliance / data governance — laws may require data to stay in a particular country.
  2. Proximity to users (latency) — closer Regions mean faster response.
  3. Service and feature availability — not every service is in every Region.
  4. Pricing — costs differ from Region to Region.

Availability Zones (AZs). Within each Region are multiple Availability Zones, each one or more discrete data centers with independent power, cooling, and networking. AZs are physically separated (miles apart) but linked by high-speed, low-latency connections. Deploying across at least two AZs is the standard way to build high availability: if one AZ fails, an application spread across several keeps running. A Region always has multiple AZs — this multi-AZ design is what makes AWS resilient.

Edge locations. Separate from Regions and AZs, AWS operates a large global network of edge locations — sites used by content delivery (Amazon CloudFront) and DNS (Amazon Route 53) to cache content and answer requests close to users, reducing latency. There are many more edge locations than Regions.

Two extras worth recognizing:

  • AWS Local Zones place compute and storage close to a specific metro area for very low latency there.
  • AWS Outposts bring AWS infrastructure and services into the customer's own on-premises data center for hybrid, low-latency, or data-residency needs.

Concrete examples

  • "A German company must keep customer data inside Germany." Choose a Region located in Germany (compliance/data-governance driver).
  • "How do we survive the loss of a single data center?" Deploy across multiple Availability Zones in the Region (high availability).
  • "Users worldwide complain that a website loads slowly." Serve content from edge locations via CloudFront to cut latency.

Teach the concept: ways to interact with AWS

There are three primary ways to reach AWS services, plus infrastructure-as-code on top.

  • AWS Management Console — a web-based graphical interface; best for learning, exploration, and one-off tasks.
  • AWS Command Line Interface (CLI) — control services with typed commands and scripts; ideal for automation and repeatable operations from a terminal.
  • AWS SDKs (Software Development Kits) — call AWS services programmatically from application code in languages such as Python, Java, JavaScript, .NET, and Go.

For repeatable provisioning, infrastructure as code (IaC) tools such as AWS CloudFormation define resources in templates so an entire environment can be created, updated, and torn down consistently — no clicking required.

Teach the concept: compute services

Compute is where your code and applications actually run. Learn the four main options and when each fits.

Amazon EC2 (Elastic Compute Cloud) — resizable virtual servers (instances) where you control the operating system, installed software, and configuration. It is the flexible, general-purpose choice and the classic IaaS example. Because you manage the instance, you patch the OS and scale capacity. EC2 offers instance families tuned for different workloads:

  • General purpose — balanced CPU/memory (web servers, small databases).
  • Compute optimized — high CPU (batch processing, gaming servers).
  • Memory optimized — lots of RAM (in-memory databases, analytics).
  • Storage optimized — high, fast local disk (data warehouses, big data).
  • Accelerated computing — GPUs/specialized hardware (machine learning, graphics).

To make EC2 elastic and resilient:

  • Amazon EC2 Auto Scaling adds and removes instances automatically to match demand.
  • Elastic Load Balancing (ELB) distributes incoming traffic across healthy instances so none is overwhelmed and failures are bypassed. (Types include Application Load Balancer for HTTP/HTTPS, Network Load Balancer for high-performance TCP/UDP, and Gateway Load Balancer.)

AWS Lambdaserverless compute: you upload a function, and Lambda runs it in response to events, automatically scaling and charging only for the compute time consumed (measured in milliseconds), with no charge when the code is not running and no servers to manage. Ideal for short, event-driven tasks (process a file uploaded to S3, respond to an API call). Lambda is the exam's favorite illustration of both serverless and pay only for what you use.

Containers — package an application with its dependencies so it runs consistently anywhere.

  • Amazon ECS (Elastic Container Service) — AWS's own container orchestration.
  • Amazon EKS (Elastic Kubernetes Service) — managed Kubernetes.
  • AWS Fargateserverless compute for containers, so you run containers without managing the underlying EC2 hosts.
  • Amazon ECR (Elastic Container Registry) — stores container images.

AWS Elastic Beanstalk — a PaaS that deploys and manages web applications for you: you upload code and Beanstalk handles capacity provisioning, load balancing, scaling, and health monitoring, while you keep control of the underlying resources. Great when you want to run an app without managing the platform yourself.

Other compute worth recognizing: AWS Batch (large-scale batch jobs), Amazon Lightsail (simple virtual private servers with predictable pricing for small apps and websites).

Concrete examples

  • "We need full control of the OS to run a legacy application."Amazon EC2.
  • "Run a small piece of code whenever a file lands in S3, and pay nothing when idle."AWS Lambda.
  • "Run Docker containers but not manage any servers."AWS Fargate.
  • "Just upload our web app and let AWS handle deployment, scaling, and load balancing."AWS Elastic Beanstalk.

Key-service callout — Compute - EC2 = virtual servers, you control the OS (IaaS). Auto Scaling = elastic instance count. ELB = distribute traffic across healthy targets. - Lambda = serverless functions, event-driven, pay per millisecond, no servers. - ECS/EKS = container orchestration; Fargate = serverless containers; ECR = image registry. - Elastic Beanstalk = PaaS, deploy an app without managing the platform. Lightsail = simple, low-cost VPS.

Teach the concept: storage services

AWS storage comes in three shapes — object, block, and file — plus archival. Matching the shape to the need is the core skill.

Amazon S3 (Simple Storage Service)object storage: data is stored as objects in buckets, accessed over the internet via a URL/API, with essentially unlimited capacity and eleven 9s (99.999999999%) of durability. S3 is ideal for backups, static website hosting, data lakes, media, logs — any large collection of files. It is not a drive you mount to a server; it is accessed over HTTP. S3 offers storage classes to balance cost against access frequency:

  • S3 Standard — frequent access; highest storage cost, lowest access cost.
  • S3 Intelligent-Tiering — automatically moves objects between tiers based on usage; good when access patterns are unknown.
  • S3 Standard-Infrequent Access (Standard-IA) and One Zone-IA — cheaper storage for less-frequently-accessed data (One Zone-IA keeps a single AZ copy).
  • S3 Glacier Instant Retrieval / Flexible Retrieval / Deep Archive — very low-cost archival; retrieval ranges from instant to hours (Deep Archive is cheapest, slowest).

Lifecycle policies transition objects to cheaper classes automatically as they age.

Amazon EBS (Elastic Block Store)block storage volumes that attach to a single EC2 instance, behaving like a virtual hard disk. Used for operating systems, databases, and any workload needing persistent, low-latency block storage. An EBS volume lives in one Availability Zone; you back it up with snapshots stored in S3. Volume types include SSD-backed (gp3, io2) and HDD-backed for throughput.

Amazon EFS (Elastic File System) — a shared file system that many Linux EC2 instances can mount at the same time, scaling elastically as files are added and removed. Suits shared content and workloads needing a common file store across instances. (For Windows or high-performance computing, Amazon FSx provides managed file systems, including FSx for Windows File Server and FSx for Lustre.)

Moving data into AWS:

  • AWS Snow Family (e.g., Snowball) — physical devices shipped to you for offline transfer of large data volumes when networks are too slow.
  • AWS Storage Gateway — connects on-premises applications to AWS storage.
  • AWS DataSync — automates online data transfer to AWS.

The one-line contrast to memorize: S3 = object storage over the internet; EBS = block storage for one instance; EFS = shared file storage for many instances; Glacier = cheap archival.

Concrete examples

  • "Store millions of images for a website, accessed over the web, with near-infinite scale."Amazon S3.
  • "A persistent disk for the operating system and database of a single EC2 instance."Amazon EBS.
  • "A shared file system mounted by twenty Linux instances at once."Amazon EFS.
  • "Archive compliance records for seven years at the lowest possible cost; retrieval in hours is fine."S3 Glacier Deep Archive.
  • "Move 80 TB to AWS but the internet link would take months."AWS Snowball.

Key-service callout — Storage - S3 = object storage, buckets, over the internet, 11 nines durability; classes from Standard to Glacier Deep Archive; Intelligent-Tiering auto-moves data. - EBS = block storage, one EC2 instance, single AZ, snapshots to S3. - EFS = shared file storage, many Linux instances. FSx = managed Windows/Lustre file systems. - Snow Family = offline bulk transfer devices. Storage Gateway / DataSync = on-prem-to-cloud transfer.

Teach the concept: database services

AWS offers managed databases so you avoid installing, patching, backing up, and scaling engines yourself. Match each to its data model.

Amazon RDS (Relational Database Service) — managed relational databases supporting engines MySQL, PostgreSQL, MariaDB, Oracle, SQL Server, and Amazon Aurora. AWS handles provisioning, patching, backups, and failover. Multi-AZ deployments keep a standby replica in another AZ for high availability; read replicas offload read traffic. Use RDS for structured data with schemas and transactions — orders, accounting, inventory.

Amazon Aurora — a MySQL- and PostgreSQL-compatible relational database built for the cloud, offering higher performance and durability than the standard engines, storing six copies of data across three AZs. Aurora Serverless scales capacity automatically.

Amazon DynamoDB — a fully managed, serverless NoSQL key-value and document database delivering single-digit-millisecond performance at any scale, with no servers to manage and automatic scaling. Ideal for high-traffic web/mobile apps, gaming, IoT, and workloads with flexible or rapidly changing data. When a question says "fully managed NoSQL database that scales to any size," the answer is almost always DynamoDB.

Amazon ElastiCache — managed in-memory caching (Redis or Memcached) that accelerates read-heavy applications by keeping frequently accessed data in memory, reducing load on the primary database.

Amazon Redshift — a managed data warehouse optimized for analytics (OLAP) — complex queries over very large datasets for business intelligence and reporting, not day-to-day transactions.

Purpose-built databases to recognize:

  • Amazon Neptune — graph database (relationships, social networks, fraud graphs).
  • Amazon DocumentDB — document database (MongoDB-compatible).
  • Amazon Keyspaces — Apache Cassandra-compatible.
  • Amazon MemoryDB — durable in-memory database.
  • Amazon Timestream — time-series data (IoT/metrics).

Migrating databases: AWS Database Migration Service (DMS) moves databases into AWS with minimal downtime; the Schema Conversion Tool helps convert between engines.

Concrete examples

  • "A managed PostgreSQL database with automatic backups and a standby in another AZ."Amazon RDS (Multi-AZ).
  • "A serverless NoSQL store for a mobile game with millions of players and millisecond reads."Amazon DynamoDB.
  • "Speed up a read-heavy site by caching results in memory."Amazon ElastiCache.
  • "Run complex analytical reports over billions of rows."Amazon Redshift.

Key-service callout — Databases - RDS = managed relational (MySQL, PostgreSQL, etc.); Multi-AZ = HA standby; read replicas = scale reads. - Aurora = cloud-built relational, MySQL/PostgreSQL-compatible, high performance. - DynamoDB = fully managed NoSQL, serverless, any scale, single-digit-ms. - ElastiCache = in-memory caching (Redis/Memcached). Redshift = data warehouse (analytics). - DMS = database migration with minimal downtime.

电子书内容

All 4 domains at real weight, version-locked to CLF-C02
The shared responsibility model made concrete (who secures what)
A 40+ service cheat-sheet — each service by its single job
Well-Architected's six pillars + the Cloud Adoption Framework
400+ practice questions with explanations (more free on the site)
A ~30-term glossary + a 7-day study plan — PDF + EPUB

练习免费,为什么还要买书?

我们的练习题和计时模考一直免费 —— 网站上的东西不会因为这本书而收起来。这本 $14.99 的书是「学」的那一半:知识本身,按顺序讲清楚,存成一份属于你的文件。

  • 系统讲解 —— 每个考试部分按章节从头讲到尾,不只是题目
  • 可打印可贴标签 —— 一份适合打印的 PDF,能划重点、做批注、带到书桌前
  • 随处离线学 —— EPUB 放手机或电子书阅读器;不用 wifi,不用一堆浏览器标签
  • 全在一处 —— 章节、每章速记卡、练习题都在同一份文件里
  • 永久归你 —— 一次 $14.99,即时下载,无订阅

而且零风险:14 天退款保证 —— 不满意?发邮件即可全额退款,无需理由。 详见退款政策

获取电子书 —— $14.99(PDF + EPUB)↑

14 天退款保证 · 全额退款,无需理由。

一次购买,永久下载访问。此电子书是完整的 AWS Certified Cloud Practitioner (CLF-C02) 学习指南,含 PDF 与 EPUB。仅为教育性摘要,非专业或法律意见 —— 请始终以官方来源核实当前规定。最后更新:August 2026。

反馈