public NeptuneExportService()

in src/main/java/com/amazonaws/services/neptune/export/NeptuneExportService.java [71:105]


    public NeptuneExportService(String cmd,
                                String localOutputPath,
                                boolean cleanOutputPath,
                                String outputS3Path,
                                boolean createExportSubdirectory,
                                boolean overwriteExisting,
                                boolean uploadToS3OnError,
                                String configFileS3Path,
                                String queriesFileS3Path,
                                String completionFileS3Path,
                                ObjectNode completionFilePayload,
                                ObjectNode additionalParams,
                                int maxConcurrency,
                                String s3Region,
                                int maxFileDescriptorCount,
                                String sseKmsKeyId,
                                AwsCredentialsProvider s3CredentialsProvider) {
        this.cmd = cmd;
        this.localOutputPath = localOutputPath;
        this.cleanOutputPath = cleanOutputPath;
        this.outputS3Path = outputS3Path;
        this.createExportSubdirectory = createExportSubdirectory;
        this.overwriteExisting = overwriteExisting;
        this.uploadToS3OnError = uploadToS3OnError;
        this.configFileS3Path = configFileS3Path;
        this.queriesFileS3Path = queriesFileS3Path;
        this.completionFileS3Path = completionFileS3Path;
        this.completionFilePayload = completionFilePayload;
        this.additionalParams = additionalParams;
        this.maxConcurrency = maxConcurrency;
        this.s3Region = s3Region;
        this.maxFileDescriptorCount = maxFileDescriptorCount;
        this.sseKmsKeyId = sseKmsKeyId;
        this.s3CredentialsProvider = s3CredentialsProvider;
    }