Created
March 25, 2019 13:48
-
-
Save ilyasahsan123/a48c1a60396711c63ccc166f5b735e33 to your computer and use it in GitHub Desktop.
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: An AWS Serverless Specification template describing your function. | |
Resources: | |
dogreat: | |
Type: 'AWS::Serverless::Function' | |
Properties: | |
Handler: lambda_function.lambda_handler | |
Runtime: python3.6 | |
CodeUri: s3://do-great-bucket/source.zip | |
Description: '' | |
MemorySize: 128 | |
Timeout: 3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment