AWSTemplateFormatVersion : '2010-09-09' Transform: AWS::Serverless-2016-10-31 Resources: HelloWorldFunction: Type: AWS::Serverless::Function Properties: Handler: app.handler Runtime: python3.9 CodeUri: function/ Timeout: 30 HelloWorldStateMachine: Type: AWS::Serverless::StateMachine Properties: DefinitionUri: ./state-machines/hello-world-state-machine-definition.asl.json