我的代码有一点问题。基本上,我应该有权删除存储桶,但它不起作用。你知道为什么它不起作用吗?
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowAcces",
"Effect": "Allow",
"Principal": {
"AWS": [
"arn:aws:iam::...",
"...",
"arn:aws:iam::...",
"arn:aws:iam::...",
"arn:aws:iam::...",
"arn:aws:iam::..."
]
},
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::.../*",
"arn:aws:s3:::..."
]
}
]
}