私はバケツにconsole.aws.amazon.comを介してこれらのpolicyをしようとしている:S3ポリシーが無効なアクションを持っている - S3:ListAllMyBuckets
{ "Statement": [ { "Effect": "Allow", "Action": [ "s3:ListBucket", "s3:GetBucketLocation", "s3:ListBucketMultipartUploads" ], "Resource": "arn:aws:s3:::itnighq", "Condition": {} }, { "Effect": "Allow", "Action": [ "s3:AbortMultipartUpload", "s3:DeleteObject", "s3:DeleteObjectVersion", "s3:GetObject", "s3:GetObjectAcl", "s3:GetObjectVersion", "s3:GetObjectVersionAcl", "s3:PutObject", "s3:PutObjectAcl", "s3:PutObjectAclVersion" ], "Resource": "arn:aws:s3:::itnighq/*", "Condition": {} }, { "Effect": "Allow", "Action": "s3:ListAllMyBuckets", "Resource": "*", "Condition": {} } ] }
しかし、私は、このエラーメッセージが出てい: ポリシーが無効なアクションを持っている - S3: ListAllMyBuckets 「リソース」:「*」、私も** arn:aws:s3 ::: ****を使用しようとしましたが、どちらも動作しません。
誰か手掛かりがありますか?
あなたはIAMで、このポリシーを適用する方法についての手順を説明していただけますか? – dnlbrky