I am using the aws cli to list the files in an s3 bucket using the following command (documentation):
aws s3 ls s3://mybucket --recursive --human-readable --
Simple command would be
aws s3 ls s3://mybucket --recursive --human-readable --summarize |cut -d ' ' -f 8
If you need the timestamp, just update command field values.