This page (revision-12) was last changed on 23-Apr-2022 17:06 by HarryMetske

This page was created on 23-Apr-2022 17:05 by Harry Metske

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
12 23-Apr-2022 17:06 3 KB HarryMetske to previous
11 23-Apr-2022 17:05 3 KB HarryMetske to previous | to last
10 23-Apr-2022 17:05 3 KB HarryMetske to previous | to last
9 23-Apr-2022 17:05 3 KB HarryMetske to previous | to last
8 23-Apr-2022 17:05 2 KB Harry Metske to previous | to last
7 23-Apr-2022 17:05 3 KB Harry Metske to previous | to last
6 23-Apr-2022 17:05 2 KB Harry Metske to previous | to last
5 23-Apr-2022 17:05 2 KB Harry Metske to previous | to last
4 23-Apr-2022 17:05 2 KB Harry Metske to previous | to last
3 23-Apr-2022 17:05 1 KB Harry Metske to previous | to last
2 23-Apr-2022 17:05 1 KB Harry Metske to previous | to last
1 23-Apr-2022 17:05 615 bytes Harry Metske to last

Page References

Incoming links Outgoing links
AWS Lambda...nobody

Version management

Difference between version and

At line 6 added 6 lines
* [the SLA|https://aws.amazon.com/lambda/sla/], you get credits if they don't meet the SLA
* [AWS Lambda limits|https://docs.aws.amazon.com/lambda/latest/dg/limits.html]
* [Building Lambda functions in Go|https://docs.aws.amazon.com/lambda/latest/dg/go-programming-model.html]
* [AWS Lambda Function Handler in Go|https://docs.aws.amazon.com/lambda/latest/dg/go-programming-model-handler-types.html]
* [AWS Lambda Context Object in Go|https://docs.aws.amazon.com/lambda/latest/dg/go-programming-model-context.html]
* [Lambda environment variables|https://docs.aws.amazon.com/lambda/latest/dg/lambda-environment-variables.html]
At line 8 changed one line
As event source you can have S3 buckets, DynamoDB and API Gateway (web requests).\\
As event source you can have (just a few examples) S3 buckets, SES, SNS, DynamoDB and API Gateway or ALB (web requests), [complete list here|https://docs.aws.amazon.com/lambda/latest/dg/lambda-services.html], both synchronous and asynchronous.\\
Your function runs in one of the [available runtimes|https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html] ((versions of) languages)\\
The code you write does not have to be reentrant, ''"If the function is invoked again while a request is still being processed, another instance is provisioned, increasing the function's concurrency."''\\
At line 18 added one line
At line 27 added 2 lines
* integration with other functions and (AWS) services
* application session state options?