I would like to schedule the trigger of Lambda from Aws Java Sdk, the schedule could be more than a year from now, so SQS might not be an option. Is this possible?
I cannot find any example in the web and in their sdk documentation.
I would like to schedule the trigger of Lambda from Aws Java Sdk, the schedule could be more than a year from now, so SQS might not be an option. Is this possible?
I cannot find any example in the web and in their sdk documentation.
you cannot schedule the lambda directly. The first link you provided outlines what you need to do.
So the gist of it, is that you need to create a cloudwatch event and wire it up to trigger the lambda function when it fires. you should be able to do this by looking at the SDK documentation.