I am trying to grant permissions to an existing account in s3.
The bucket is owned by the account, but the data was copied from another account\'s bucket.
Wh
This was my powershell only solution.
powershell
aws s3 ls s3://BUCKET/ --recursive | %{ "aws s3api put-object-acl --bucket BUCKET --key "+$_.ToString().substring(30)+" --acl bucket-owner-full-control" }