I am running a boto3 batch client job and using the submit_job
function like so:
submit_job_response = batch.submit_job(
jobName=job_name,
jobQueue=job_queue,
jobDefinition=job_definition,
parameters=parameters,
containerOverrides={"command": command_list, "environment": environment},
)
Now, this is running correctly and jobs are running successfully. My question is (I don't see anything in the documentation for this), can I update the job_id AWS Batch creates to be human readable? Right now the job_id in the UI is a uuid, but I would like to add a string value to this so it can be more easily read in the UI.