ForThoseWhoComeAfter commented on code in PR #10443:
URL: https://github.com/apache/nifi/pull/10443#discussion_r2459800208
##########
nifi-extension-bundles/nifi-aws-bundle/nifi-aws-kinesis/src/main/java/org/apache/nifi/processors/aws/kinesis/ConsumeKinesis.java:
##########
@@ -732,6 +754,36 @@ public String getDescription() {
}
}
+ enum OutputStrategy implements DescribedValue {
+ USE_VALUE("Use Content as Value", "Write only the Kinesis Record value
to the FlowFile record."),
+ USE_WRAPPER("Use Wrapper", "Write the Kinesis Record value and
metadata into the FlowFile record. (See processor's additional details for more
information.)"),
Review Comment:
Done
##########
nifi-extension-bundles/nifi-aws-bundle/nifi-aws-kinesis/src/main/java/org/apache/nifi/processors/aws/kinesis/ConsumeKinesis.java:
##########
@@ -732,6 +754,36 @@ public String getDescription() {
}
}
+ enum OutputStrategy implements DescribedValue {
+ USE_VALUE("Use Content as Value", "Write only the Kinesis Record value
to the FlowFile record."),
+ USE_WRAPPER("Use Wrapper", "Write the Kinesis Record value and
metadata into the FlowFile record. (See processor's additional details for more
information.)"),
+ INJECT_METADATA("Inject Metadata",
+ "Write the Kinesis Record value to the FlowFile record and add
a sub-record to it with metadata. (See processor's additional details for more
information.)");
Review Comment:
Done
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]