com.marklogic.flux.api.CustomExportWriteOptions 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;
import java.util.Map;
public interface CustomExportWriteOptions {
CustomExportWriteOptions target(String target);
CustomExportWriteOptions additionalOptions(Map additionalOptions);
CustomExportWriteOptions saveMode(SaveMode saveMode);
CustomExportWriteOptions s3AddCredentials();
CustomExportWriteOptions s3AccessKeyId(String accessKeyId);
CustomExportWriteOptions s3SecretAccessKey(String secretAccessKey);
CustomExportWriteOptions s3Endpoint(String endpoint);
}