A service that manages APIs, letting you send requests to backends like Lambda or other AWS services.
2
New cards
What happens when API Gateway requests exceed the configured throttling limit?
Requests over the limit get an HTTP 429 “Too Many Requests” response.
3
New cards
What are the two throttling settings in API Gateway?
Standard rate (requests per second) and burst (short spikes of extra requests).
4
New cards
How do API Gateway SDK clients handle HTTP 429 responses?
They automatically try the request again.
5
New cards
How do you enable caching in API Gateway?
By creating a cache for a specific API stage and setting its size.
6
New cards
What are two benefits of enabling caching in API Gateway?
Makes APIs faster and reduces traffic to your backend.
7
New cards
What cache settings can you configure in API Gateway?
How the cache key is built and how long data stays in the cache (TTL).
8
New cards
How can you invalidate cached data in API Gateway?
Use API Gateway management APIs to clear the cache for a stage.
9
New cards
What is a VPC endpoint?
A way to privately connect your VPC to supported AWS services without using the internet, NAT, VPN, or Direct Connect.
10
New cards
Why don’t instances need public IPs when using a VPC endpoint?
Because traffic to the service stays within the Amazon network and doesn’t go over the public internet.
11
New cards
What is the main benefit of using a VPC endpoint with S3 and DynamoDB?
You can access them privately using private IP addresses, with no exposure to the public internet.
12
New cards
When would you use a VPC endpoint?
When you want to connect to AWS services privately from your VPC without using the internet.
13
New cards
What is throttling in API Gateway?
A way to limit the number of API requests per second to prevent overload.
14
New cards
What are the two types of throttling limits in API Gateway?
Standard rate (requests per second) and burst (short spikes of extra requests).
15
New cards
What happens when requests exceed the throttling limit in API Gateway?
They get an HTTP 429 “Too Many Requests” response.
16
New cards
How do API Gateway SDK clients handle HTTP 429 responses?
They automatically retry the request.
17
New cards
Why use throttling limits in API Gateway?
To control traffic, protect backend resources, and avoid overload.
18
New cards
How do you provision a cache in API Gateway?
By creating a cache for a specific API stage and choosing its size in gigabytes.
19
New cards
What does enabling caching in API Gateway do?
It improves performance and reduces traffic to your backend.
20
New cards
What cache settings can you control in API Gateway?
How the cache key is built and the time-to-live (TTL) for each method.
21
New cards
How can you clear cached data in API Gateway?
Use the API Gateway management APIs to invalidate the cache for a stage.
22
New cards
What is hot, warm, and cold storage?
Hot = frequently accessed data, Warm = less frequently accessed, Cold = rarely accessed; colder storage is cheaper to store but more expensive to access.
23
New cards
What is Amazon FSx for Lustre used for?
A high-performance, parallel file system for fast processing of hot data workloads.
24
New cards
What is Amazon FSx for Windows File Server?
A fully managed Windows file system supporting SMB, NTFS, and Active Directory integration.
25
New cards
What is Amazon Elastic File System (EFS)?
A fully managed file storage service for easy setup and scalable file storage in AWS.
26
New cards
What is Amazon S3 used for in terms of data access?
Object storage for frequently, infrequently, or rarely accessed data, with multiple storage tiers including Glacier for cold data.
27
New cards
Which AWS service combination can be used for hot and cold storage?
Amazon FSx for Lustre for hot, high-performance data and Amazon S3 (Glacier) for cold, infrequently accessed data.
28
New cards
What is Lambda@Edge?
A service that lets you run Lambda functions to customize CloudFront content at locations closer to viewers without managing servers.
29
New cards
At which points can Lambda@Edge functions run in CloudFront?