AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Resources: GoFunction: Type: AWS::Serverless::Function Properties: CodeUri: Bucket: <%REPO_BUCKET%> Key: 11545787-5f5f-498e-96c3-0c18ed8d2174 Handler: handler.Handle Events: HelloApi: Type: Api Properties: Path: /hello Method: POST Runtime: python2.7 Description: A hello world application written in Go.