Created
February 21, 2020 03:56
-
-
Save hemikak/255c642b22c30cade79a878f5208bc50 to your computer and use it in GitHub Desktop.
"Hello World" AWS SAM Specification
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AWSTemplateFormatVersion: "2010-09-09" | |
Transform: AWS::Serverless-2016-10-31 | |
Description: AWS Lambda Hello World Ballerina | |
Globals: | |
Function: | |
Timeout: 10 | |
Resources: | |
HelloWorldFunction: | |
Type: AWS::Serverless::Function | |
Properties: | |
Runtime: provided | |
CodeUri: aws-ballerina-lambda-functions.zip | |
Handler: hello_world.sayHello | |
Layers: | |
- arn:aws:lambda:us-east-1:141896495686:layer:ballerina:2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment