src/main/java/com/amazonaws/services/kinesis/aggregators/factory/CSVAggregatorFactory.java [80:88]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        dataExtractor.setAggregatorType(aggregatorType);
        if (labelAttributeAlias != null && !labelAttributeAlias.equals("")) {
            dataExtractor.withLabelAttributeAlias(labelAttributeAlias);
        }
        if (dateAlias != null && !dateAlias.equals("")) {
            dataExtractor.withDateAttributeAlias(dateAlias);
        }
        return new StreamAggregator(streamName, appName, namespace, config, dataExtractor).withTimeHorizon(
                timeHorizons).withAggregatorType(aggregatorType);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/amazonaws/services/kinesis/aggregators/factory/RegexAggregatorFactory.java [67:76]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        dataExtractor.setAggregatorType(aggregatorType);

        if (labelAttributeAlias != null && !labelAttributeAlias.equals("")) {
            dataExtractor.withLabelAttributeAlias(labelAttributeAlias);
        }
        if (dateAlias != null && !dateAlias.equals("")) {
            dataExtractor.withDateAttributeAlias(dateAlias);
        }
        return new StreamAggregator(streamName, appName, namespace, config, dataExtractor).withTimeHorizon(
                timeHorizons).withAggregatorType(aggregatorType);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



