AWSTemplateFormatVersion: '2010-09-09' Transform: 'AWS::Serverless-2016-10-31' Description: An AWS Serverless Specification template describing your function. Resources: PuenteInfer: Type: 'AWS::Serverless::Function' Properties: Handler: lambda_function.lambda_handler Runtime: python2.7 CodeUri: . Description: '' MemorySize: 128 Timeout: 3 Role: 'arn:aws:iam::501088278124:role/service-role/PuenteInfer-role-0l9qce5o' Events: Api1: Type: Api Properties: Path: / Method: POST Api2: Type: Api Properties: Path: / Method: PUT Api3: Type: Api Properties: Path: / Method: GET Api4: Type: Api Properties: Path: / Method: POST