in src/main/java/com/epam/digital/data/platform/integration/ceph/service/impl/CephServiceS3Impl.java [163:169]
public Boolean exist(String cephBucketName, String key) {
log.info("Checking if object with key {} exists in ceph bucket {}", key, cephBucketName);
assertBucketExists(cephAmazonS3, cephBucketName);
var result = execute(() -> cephAmazonS3.doesObjectExist(cephBucketName, key));
log.info("Object {} existing in ceph bucket {} - {}", key, cephBucketName, result);
return result;
}