S3 Storage upload and download error

0

Since last saturday (March 4th) we are not able to upload nor download on our S3 Storage If I try to access to a file we have following error message : *AccessDeniedAccess Denied ................................................... * If I try to upload a file NoSuchKeyThe specified key does not exist.uploads ............................................ S3 Block Public Access is disabled Any Idea to help us ?

2回答
0

What permissions do you have on the user you are using to upload and download? I do uploads all the time and mine works fine using a python script.

Here's my JSON for the policy of the user I use to do this. Maybe this will help. You may not need ListBucket or ListAllMyBuckets. I need them, though, because my script uses them.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "VisualEditor0",
            "Effect": "Allow",
            "Action": [
                "s3:PutObject",
                "s3:GetObjectAcl",
                "s3:GetObject",
                "s3:ListAllMyBuckets",
                "s3:GetObjectAttributes",
                "s3:ListBucket",
                "s3:PutObjectAcl"
            ],
            "Resource": "*"
        }
    ]
}
回答済み 1年前
0

What client are you using to access S3, and how is it getting AWS credentials? Are the credentials still current?

エキスパート
回答済み 1年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ