Resources: MyHttpApi: Type: AWS::Serverless::HttpApi MyLambdaFunction: Type: AWS::Serverless::Function Properties: AutoPublishAlias: live Handler: index.handler Runtime: nodejs14.x CodeUri: ${codeuri} Events: FooEvent: Type: HttpApi Properties: ApiId: Ref: MyHttpApi BarEvent: Type: HttpApi Properties: ApiId: Ref: MyHttpApi Path: /bar Method: POST Metadata: SamTransformTest: true