How to launch Glue Jobs from CloudFormation?

0

I modified this example from the AWS documentation to specify my Glue jobs, but nothing happens:

Resources:
ScheduledJobTrigger:
Type: AWS::Glue::Trigger
Properties:
Type: SCHEDULED
Description: DESCRIPTION_SCHEDULED
Schedule: cron(0 **/2 ** ** ? **)
Actions:
- JobName: prod-job2
- JobName: prod-job3
Arguments:
'--job-bookmark-option': job-bookmark-enable
Name: prod-trigger1-scheduled

This script is in a YAML file that I uploaded to CloudFormation. I used all the default settings after the import. After the specified cron time, nothing happens.

What else is needed to launch Glue jobs?

asked 3 years ago404 views
1 Answer
0

got answer from stackoverflow ...

answered 3 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions