AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Resources: GoFunction: Type: AWS::Serverless::Function Properties: CodeUri: Bucket: <%REPO_BUCKET%> Key: 93f1356a-4c96-4c0b-8000-da5fe78bb85d Handler: handler.Handle Events: HelloApi: Type: Api Properties: Path: /hello Method: POST Runtime: python2.7 Description: A hello world application written in Go.