As in the title of my post, it is possible? I don’t see any options.
Also, the job details include advanced properties that include the name of my script, for example, job-name.py When the python script is renamed, will the job name also change? I’m afraid I might mess something up after the change.
Thanks in advance
2
Answers
From CloudFormation docs (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html) is stated that changing the name parameter would replace the job so I would say no.
Expanding on the answer from @zoran2709:
In the console, it doesn’t look like you can. If you defined this job in CloudFormation, you can update the name of the job, but it will replace the resource with a new one. I would recommend setting the
UpdateReplacePolicy
on the resource toRetain
just to be safe. Checkout the docs here: