This exception is thrown when the policy on the S3 bucket is not sufficient.
The cluster does not have read bucket or put object permissions on the S3 bucket specified when enabling logging.
313233343536373839
// marshaller understands. String errorCode = parseErrorCode(json); if (errorCode == null || !errorCode.equals("InsufficientS3BucketPolicyException")) return null; InsufficientS3BucketPolicyException e = (InsufficientS3BucketPolicyException)super.unmarshall(json); return e; }
37383940414243444546
} } @Override public AmazonServiceException unmarshall(JSONObject json) throws Exception { InsufficientS3BucketPolicyException e = (InsufficientS3BucketPolicyException)super.unmarshall(json); e.setErrorCode("InsufficientS3BucketPolicyException"); return e; }
31323334353637383940
333435363738394041
// marshaller understands. String errorCode = parseErrorCode(node); if (errorCode == null || !errorCode.equals("InsufficientS3BucketPolicyFault")) return null; InsufficientS3BucketPolicyException e = (InsufficientS3BucketPolicyException)super.unmarshall(node); return e; }