"Download Exported Course" from S3

Version : Koa native installation


As the picture above , I want to download the exported course file from S3.
But I meet the “Access denied” problem.

Below is my S3 bucket rule:

"Effect": "Allow",
            "Action": [
                "s3:*Object",
                "s3:List*",
                "s3:GetObj*",
                "s3:DeleteObject",
                "s3:DeleteObjectTagging",
                "s3:GetObjectRetention",
                "s3:DeleteObjectVersion",
                "s3:GetObjectVersionTagging",
                "s3:PutObjectVersionTagging",
                "s3:DeleteObjectVersionTagging",
                "s3:PutObjectLegalHold",
                "s3:GetObjectLegalHold",
                "s3:GetObjectVersionTorrent",
                "s3:GetBucketObjectLockConfiguration",
                "s3:GetObjectAcl",
                "s3:GetObjectTorrent",
                "s3:PutObjectRetention",
                "s3:PutObjectVersionAcl",
                "s3:GetObjectVersionAcl",
                "s3:GetObjectTagging",
                "s3:PutObjectTagging",
                "s3:PutBucketObjectLockConfiguration",
                "s3:GetObjectVersionForReplication",
                "s3:PutObjectAcl",
                "s3:GetObjectVersion"
            ],
            "Resource": [
                "arn:aws:s3:::my-bucket",
                "arn:aws:s3:::my-bucket/*"
            ]

Is there anything wrong ?

@guangyaw, it is a good idea to have the corresponding IAM user have all the permissions on the bucket. Here is an example from a policy that I have attached to such a user.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "",
            "Effect": "Allow",
            "Action": "s3:*",
            "Resource": [
                "arn:aws:s3:::bucket-name/*",
                "arn:aws:s3:::bucket-name"
            ]
        }
    ]
}

Can you try this and let me know if it resolved your problem?

No, this could not resolved my problem.
Still “Access Denied” .