I want to make one of AWS job as an array job(to execute things parallely), I have list of inputs for the child job in single json file on s3.
I am trying to convert the job into array job by adding array job into defination as follows:
"Array": {
"Source": "S3",
"Bucket": "some bucket",
"Path": "path/abc.json",
"SuccessPercent": 100
}
Here, abc.json is the file that contains all the inputs for the child job, but specifying it as "path", AWS is trying to fetch multiple files from that location, I know, the path should be mentioned as "Key" : "path/abc.json", but without the Path variable, I am getting an error of validation,
How could I use that file for the child job execution, or what should I mention in path variable.