Github user jvwing commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2859#discussion_r204246953
--- Diff:
nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/sqs/PutSQS.java
---
@@ -57,6 +59,14 @@
+ "the Message Attribute and value will become the value of the
Message Attribute", expressionLanguageScope =
ExpressionLanguageScope.FLOWFILE_ATTRIBUTES)
public class PutSQS extends AbstractSQSProcessor {
+ public static final PropertyDescriptor CHARSET = new
PropertyDescriptor.Builder()
--- End diff --
PutSQS.CHARSET appears similar to GetSQS.CHARSET. Can this property
descriptor be moved to AbstractSQSProcessor and shared?
---