Using AWS eb cron for parse jobs

In the Cloud Code Guide, one of the recommended ways to call cloud jobs is to use the Elastic Beanstalk cron jobs (“Periodic tasks”, https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/using-features-managing-env-tiers.html#worker-periodictasks).

Does anyone have experience on how to get this to work that they can share? Specifically, since cloud jobs needs specific headers set ( X-Parse-Application-Id/Master-Key), how to I get the AWS EB worker to set those headers when calling the endpoint?

What you could do is use AWS EventBridge to call a AWS Lambda function with the job name as parameter. The AWS Lambda function then calls the specific Parse Server Job endpoint.