AWSTemplateFormatVersion : '2010-09-09' Transform: AWS::Serverless-2016-10-31 Resources: Function: Type: AWS::Serverless::Function Properties: Handler: main.handler Runtime: python3.7 CodeUri: Python Timeout: 600 SkippedFunction: Type: AWS::Serverless::Function Properties: Handler: main.handler Runtime: python3.7 CodeUri: PreBuiltPython Timeout: 600 Metadata: SkipBuild: true