Amazon S3 copyObject permission
I'v got user with all permissions. { "Statement": [ { "Effect": "Allow", "Action": "*", "Resource": "*" } ] } I'm using aws-sdk-php-2 to put and copy objects in bucket. http://docs.aws.amazon.com/aws-sdk-php-2/latest/class-Aws.S3.S3Client.html Put code works perfect $client->putObject(array( 'Bucket' => 'kiosk', 'Key' => 'test/orders/test.csv', 'SourceFile' => $sourcePath, )); After check if object created on S3 via https://console.aws.amazon.com/s3 I'm executing next script. $result = $client->copyObject(array( 'Bucket' => 'kiosk', 'CopySource' => 'test/orders/test.csv', 'Key' => 'test/test