What does AWS X-Ray do?
it allows you to scan Lambda architecture and debug issues with AWS Lambda
Does AWS Lambda scale out automatically?
Yes
Does AWS Lambda scale up automatically?
No
Can an AWS Lambda function trigger another AWS Lambda Function?
Yes
What does SAM stand for?
Serverless Application Model
What is AWS SAM?
A superset of Cloudformation functionality that allows you to run serverless applications locally
At a high level, what is Fargate?
Fargate is a serverless container engine
What is the pricing structure for Fargate?
You specify and pay for resources per application
In what instances would you use EC2 instances instead of Fargate?
How does ECS benefit from ELB?
with ELB, you can distribute traffic evenly across tasks in your service
What is the difference between EC2 Instance Roles and Task Roles?
So, Task Roles respect Least Priviledges better than EC2 instance Roles
When configuring SQS as event source for AWS Lambda function, what is the maximum batch size supported by AWS SQS RecieveMessage API call?
10
What Amazon CloudFront events can be used to trigger a Lambda Function?
(Source: https://github.cloud.capitalone.com/puggles/deposits-accounts-bankcard-pin/blob/develop/settings.xml#L9)
Suppose you change code and upload a new version of code to an AWS Lambda Function. What will happen to requests sent immediately after the code change?
For a brief period (usually less than one minute) requests might be served by either the old or new version
What poll-based services are supported by AWS Lambda?
(Source: https://docs.aws.amazon.com/lambda/latest/dg/lambda-invocation.html?shortFooter=true%23streaming-event-source-mapping)
Are Lambda environment variables automatically encrypted?
They are encrypted when deployed, and decrypted when invoked (so your code can use them)
What actions are required by Lambda Execution Role in order to write logs in CloudWatch?
When a lambda is synchronously invoked and errors, what is returned?
A 200 status code
A FunctionError field in the response
What is the pricing model for AWS Lambda?