La política s3 tiene una acción no válida - s3: ListAllMyBuckets

Estoy probando estospolítica medianteconsole.aws.amazon.com en mis cubos:

    {
      "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": {}
        }
      ]
    }

Pero estoy recibiendo este mensaje de error:La política tiene una acción no válida - s3: ListAllMyBucketsNo parece gustar"Recurso": "*" , También traté de usar ** arn: aws: s3 ::: ****, pero tampoco funciona.

¿Alguien tiene alguna pista?

Respuestas a la pregunta(3)

Su respuesta a la pregunta