How do I grant read access to the Authenticated Users group for a file? I\'m using s3cmd and want to do it while uploading but I\'m just focusing directly on changing the acl. W
Here is an example command that will set the ACL on an S3 object to authenticated-read.
authenticated-read
aws s3api put-object-acl --acl authenticated-read --bucket mybucket --key myfile.txt
.