1 Answer
- Newest
- Most votes
- Most comments
0
This error messaage can appear when you have objects that contain special characters. To account for these special characters, you must URL encode the manfiest file.
For more information about creating and using a custom manifest file, please refer to the following link: https://docs.aws.amazon.com/AmazonS3/latest/userguide/batch-ops-create-job.html#specify-batchjob-manifest
When using Python, you can use the "urllib.parse" library to easily URL-encode the manifest file. For more information about this library, please refer to the following link: https://docs.python.org/3/library/urllib.parse.html
answered 4 years ago
Relevant content
asked a year ago
asked 3 years ago
asked 2 years ago
- AWS OFFICIALUpdated a year ago

Thank you. In fact I was already on the track of using urlIb3 but I didn't know that you could put directly the URL encode in the manifest. But we agree that you have to use "+" instead of spaces (so use urllib.parse.quote_plus() )