src/main/java/com/amazonaws/services/neptune/profiles/neptune_ml/NeptuneMachineLearningExportEventHandlerV1.java [73:93]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                      String s3Region,
                                                      boolean createExportSubdirectory,
                                                      ObjectNode additionalParams,
                                                      Args args,
                                                      Collection<String> profiles,
                                                      String sseKmsKeyId,
                                                      AwsCredentialsProvider s3CredentialsProvider) {
        logger.info("Adding neptune_ml event handler");

        CsvPrinterOptions csvPrinterOptions = CsvPrinterOptions.builder()
                .setMultiValueSeparator(";")
                .setEscapeCsvHeaders(args.contains("--escape-csv-headers"))
                .build();
        JsonPrinterOptions jsonPrinterOptions = JsonPrinterOptions.builder()
                .setStrictCardinality(true)
                .build();

        this.outputS3Path = outputS3Path;
        this.s3Region = s3Region;
        this.createExportSubdirectory = createExportSubdirectory;
        this.args = args;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/amazonaws/services/neptune/profiles/neptune_ml/NeptuneMachineLearningExportEventHandlerV2.java [76:96]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                      String s3Region,
                                                      boolean createExportSubdirectory,
                                                      ObjectNode additionalParams,
                                                      Args args,
                                                      Collection<String> profiles,
                                                      String sseKmsKeyId,
                                                      AwsCredentialsProvider s3CredentialsProvider) {
        logger.info("Adding neptune_ml event handler");

        CsvPrinterOptions csvPrinterOptions = CsvPrinterOptions.builder()
                .setMultiValueSeparator(";")
                .setEscapeCsvHeaders(args.contains("--escape-csv-headers"))
                .build();
        JsonPrinterOptions jsonPrinterOptions = JsonPrinterOptions.builder()
                .setStrictCardinality(true)
                .build();

        this.outputS3Path = outputS3Path;
        this.s3Region = s3Region;
        this.createExportSubdirectory = createExportSubdirectory;
        this.args = args;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



