Github user jmlogan commented on a diff in the pull request:
https://github.com/apache/nifi/pull/3187#discussion_r237274837
--- Diff:
nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/regions/AWSRegions.java
---
@@ -18,7 +18,8 @@
public enum AWSRegions {
- GovCloud("us-gov-west-1", "AWS GovCloud (US)"),
+ GovCloud("us-gov-west-1", "AWS GovCloud West (US)"),
--- End diff --
I can change the display name -- what about the enum itself though?
Changing the enum would break any existing flows I think? Just leave it so that
GovCloud is implicitly West?
---