Files
swift-aws-lambda-runtime/Examples/LambdaFunctions/scripts/SAM/ErrorHandling-template.yml
T
Andrea Scuderi c683b41545 Add example scripts and docs for Serverless Framework (#113)
* Add example scripts and docs for Serverless Framework
* Refactor Examples folder and scripts
- Add a common config.sh script
- Move SAM templates to scripts/SAM
- Add Serverless templates to scripts/serverless
- Update the scripts to work with new folder structure and config.sh
2020-06-12 12:14:37 -07:00

15 lines
463 B
YAML

AWSTemplateFormatVersion : '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: A sample SAM template for deploying Lambda functions.
Resources:
# ErrorHandling Function
errorHandlingFunction:
Type: AWS::Serverless::Function
Properties:
Handler: Provided
Runtime: provided
CodeUri: .build/lambda/ErrorHandling/lambda.zip
# Instructs new versions to be published to an alias named "live".
AutoPublishAlias: live