If you squint really hard, it feels like S3 is a file system in the cloud... but it's not. It's technically an object storage system - which is not quite the same thing.
Click to play video
"File storage" is what you're already familiar with:
File storage is great for single-machine-use (like your laptop), but it doesn't distribute well across many servers. It's optimized for low-latency access to a small number of files on a single machine.
Object storage is designed to be more scalable, available, and durable than file storage because it can be easily distributed across many machines:
aws s3api head-object --bucket BUCKET_NAME --key OBJECT_KEY > /tmp/object_metadata.txt
Replace BUCKET_NAME and OBJECT_KEY with the name of your bucket and the key of your object
Run and submit the CLI tests.