How can I pass parameters to jobs when they're invoked by scheduler?

I need to pass initial parameter to the Lambda function when it is invoked by scheduler but don’t know on how if I could set it?
My lambda function runs once in a day by schedule and I wrote the code like:

require 'aws-sdk-lambda'
class IndexerJob < ApplicationJob
  class_timeout 900                     
  iam_policy("lambda")
  # 11:15 PM (UTC) every day
  cron "15 23 * * ? *"
  def index
    # function code
  end
end

Not currently possible with the CloudWatch event rule CloudFormation resource https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html As far as I can tell with the native resource