UNPKG

lambda-tools

Version:

Scripts for working with AWS Lambda backed microservices

18 lines (17 loc) 375 B
{ "Type": "AWS::Lambda::Function", "DependsOn": [ "IamRoleLambda" ], "Properties": { "Code": { "S3Bucket": "", "S3Key": "" }, "Handler": "index.handler", "MemorySize": 256, "Role": { "Fn::GetAtt": ["IamRoleLambda", "Arn"] }, "Runtime": "nodejs18.x", "Timeout": 6 } }