in src/main/java/software/amazon/event/kafkaconnector/offloading/S3EventBridgeEventDetailValueOffloading.java [79:94]
public S3EventBridgeEventDetailValueOffloading(
final S3AsyncClient client,
final String bucketName,
final String jsonPathExp,
final Cache<MessageDigestCacheKey, UUID> s3ObjectKeyCache,
final Supplier<UUID> idGenerator) {
this.bucketName = bucketName;
this.client = client;
this.s3ObjectKeyCache = s3ObjectKeyCache;
this.idGenerator = idGenerator;
this.jsonPathExp = jsonPathExp;
this.jsonPathRemove = compileRestrictedJsonPath(jsonPathExp);
}