in src/main/java/software/amazon/event/kafkaconnector/offloading/S3EventBridgeEventDetailValueOffloading.java [96:107]
public S3EventBridgeEventDetailValueOffloading(
final S3AsyncClient client, final String bucketName, final String jsonPathExp) {
this.bucketName = bucketName;
this.client = client;
this.s3ObjectKeyCache = new FifoCache<>(MAX_CACHE_SIZE);
this.idGenerator = UUID::randomUUID;
this.jsonPathExp = jsonPathExp;
this.jsonPathRemove = compileRestrictedJsonPath(jsonPathExp);
}