neptune-export/src/main/java/com/amazonaws/services/neptune/profiles/neptune_ml/NeptuneMachineLearningExportEventHandlerV1.java [67:85]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                      String s3Region,
                                                      boolean createExportSubdirectory,
                                                      ObjectNode additionalParams,
                                                      Args args,
                                                      Collection<String> profiles) {
        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;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



neptune-export/src/main/java/com/amazonaws/services/neptune/profiles/neptune_ml/NeptuneMachineLearningExportEventHandlerV2.java [59:77]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                      String s3Region,
                                                      boolean createExportSubdirectory,
                                                      ObjectNode additionalParams,
                                                      Args args,
                                                      Collection<String> profiles) {
        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;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



