com.marklogic.flux.api.ReadFilesOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flux-api Show documentation
Show all versions of flux-api Show documentation
Flux API for data movement with MarkLogic
/*
* Copyright © 2024 MarkLogic Corporation. All Rights Reserved.
*/
package com.marklogic.flux.api;
public interface ReadFilesOptions {
T paths(String... paths);
T filter(String filter);
T recursiveFileLookup(boolean value);
T abortOnReadFailure(boolean value);
T s3AddCredentials();
T s3AccessKeyId(String accessKeyId);
T s3SecretAccessKey(String secretAccessKey);
T s3Endpoint(String endpoint);
}