I have a camera that adds new files to my AWS S3 bucket every hour, except when it doesn't. For rapid trouble-shooting, I'd like to be able to find (either list or view) the most recent file in the S3 folder. Or list all of the files since a particular date/time. FWIW, the file names are made up of UNIX epoch date stamps, so I could look for file names that contain a number bigger than, say 161315000.
The only solution I have so far is making a listing of all of the files, piped to a text file, which I can then parse. This takes too long...I have tens of thousands of files.
I'd be happy to use AWS CLI, s3cmd, Boto... whatever works.