Quickstart site to build out a lambda function
Create a mini Spring initializer for AWS Lambda functions.
Backend service
- Builds a layer for the different cookiecutter templates. (NOTE: This will be limited for what we can bundle)
- Webservice includes a number of parameters for the aws lambda powertools templates:
name
: defaults tohello-world
, is the name of the projectruntime
: defaults to python3.9, is the language runtime version (could also support typescript via nodejs)architecture
: defaults tox86_64
, is the CPU architecture (can also bearm64
)memory
: defaults 512, is the memory size of the lambdatimeout
: defaults to 30, is the timeout of the lambdatrigger
: defaults torest-api
, is the type of service calling the lambda function (could also supports3
)type
: defaults tosam
, is the IaC type (could also supportcdk
)