aws_lambda_flashcards

(48 cards)

1
Q

Term

A

Definition

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

AWS Lambda

A

Serverless compute service that runs your code in response to triggers without managing servers - you just upload code and it executes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Serverless Computing

A

Running code without provisioning or managing servers - AWS handles all the infrastructure so you focus on code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Lambda Function

A

The actual code package you upload to Lambda that executes when triggered - contains your business logic

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Triggers

A

Events that cause Lambda functions to execute - can be HTTP requests or AWS service events

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Code (Lambda context)

A

Your actual business logic written in supported languages like Python or Node.js that gets executed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Underlying Compute Resources

A

The servers and infrastructure AWS manages for you - you never see or configure these directly

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Run Your Code

A

Lambda executes your function when triggered - handles all the compute automatically

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Scale Your Code

A

Lambda automatically adds or removes compute capacity based on incoming requests - no manual scaling needed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

High Availability

A

Lambda runs across multiple availability zones automatically - built-in redundancy without configuration

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Lambda Code Editor

A

Web-based IDE in AWS console for writing and editing Lambda functions directly

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

HTTP Endpoints

A

API Gateway URLs that trigger Lambda functions for web services - creates REST APIs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

In-app Activity

A

Events within applications that can trigger Lambda functions - like mobile app actions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Scheduled Triggers

A

CloudWatch Events/EventBridge rules that run Lambda on a schedule - like cron jobs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

No Servers to Manage

A

You never provision EC2 instances or manage operating systems - AWS handles everything

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Continuous Scaling

A

Lambda automatically scales from zero to thousands of concurrent executions instantly

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Trigger-1 Trigger-2 Process

A

Lambda can respond to multiple trigger types and process them with the same or different functions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Subsecond Metering

A

You’re billed in 1ms increments only for actual compute time used - not idle time

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

Pay Only for What You Use

A

No charges when code isn’t running - only pay for requests and compute duration

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

Pricing Based on Requests

A

Charged per million requests to invoke your functions

21
Q

Duration-based Pricing

A

Charged for compute time in GB-seconds - memory allocated times execution duration

22
Q

Time Increments of 1ms

A

Billing calculated down to the millisecond for precise cost optimization

23
Q

Code Not Running = $0.00

A

Zero charges when Lambda functions are idle - no minimum fees or idle costs

24
Q

AWS Lambda Triggers (Examples)

A

Various AWS services that can invoke Lambda functions through events

25
S3 Trigger
Lambda executes when objects are created or modified in S3 buckets - process uploads automatically
26
SNS Trigger
Lambda processes messages from Simple Notification Service topics - handle notifications and alerts
27
SQS Trigger
Lambda polls and processes messages from Simple Queue Service - handle async message processing
28
DynamoDB Trigger
Lambda processes stream records when items change in DynamoDB tables - react to database changes
29
API Gateway Trigger
Lambda handles HTTP/REST API requests - build serverless web services and APIs
30
CloudWatch/EventBridge Schedule
Lambda runs on defined schedules - replace traditional cron jobs with serverless scheduling
31
Upload Code to Lambda
Deploy function code via console zip upload or CLI/SDK - supports direct upload or S3 reference
32
Set Up Code to Trigger
Configure event sources that invoke your function - connect triggers to Lambda
33
Lambda Ready to Run
Function deployed and waiting for triggers - no pre-warming needed
34
Just Pay for Compute Time
Only charged for actual execution duration - measured in GB-seconds
35
Lambda Automatically Scales
Handles 1 to 1000s of concurrent executions without configuration - elastic scaling built-in
36
Lambda Automatically Runs Code
Executes immediately when triggered - no startup delays or server provisioning
37
Just Write the Code
Focus only on business logic - no infrastructure code needed
38
Lambda Polls the Queue
For SQS/Kinesis Lambda automatically polls for new messages - handles message retrieval
39
Lambda Invokes Function Synchronously
Executes and waits for response in real-time - for immediate processing needs
40
A DynamoDB Event Created or Modified
Stream record generated when table items change - triggers Lambda for each change
41
An API is Called
HTTP request to API Gateway endpoint triggers associated Lambda function
42
PAL (Process)
Lambda's internal process for handling events - Poll Invoke Process pattern
43
Amazon Simple Storage Service
S3 - object storage that integrates with Lambda for file processing triggers
44
Amazon Simple Notification Service
SNS - pub/sub messaging that can trigger Lambda for event processing
45
Amazon API Gateway
Managed service for creating REST APIs that trigger Lambda functions
46
Amazon DynamoDB
NoSQL database with streams that trigger Lambda on data changes
47
Amazon Simple Queue Service
SQS - message queue service Lambda can poll for async processing
48
Amazon CloudWatch/EventBridge
Services for scheduling and rule-based Lambda triggers - time and event-based execution