AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: Create a Lambda function that logs something to the console from a cron job in EventBridge Resources: ScheduledFunction: Type: AWS::Serverless::Function Properties: CodeUri: src/ Handler: app.lambda_handler Runtime: python3.8 MemorySize: 128 Events: ScheduledFunction: Type: Schedule Properties: Schedule: rate(1 minute)