AWS notes-78
AWS notes-78
AWS Lambda:
AWS EC2:
a. Function: a function is a resource that you can invoke to run your code in AWS lambda.
A function has code that processes events and a runtime that passes request and
responses between lambda and the function code.
b. Runtime: lambda runtimes allows functions in different languages to run in the same
base execution environment. The runtime sits in between the lambda service and your
function code relying invocation events, context information and responses between the
two.
c. Event: it is a JSON formatted document that contains data for a function to process.
d. Event Source/ Trigger: an AWS service such as Amazon SNS or a custom service
that triggers your function and executes its logic.
f. Concurrency: number of request that your function is serving in any given time.