This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit fed0771175ee3e4e27fbbc15d6287927fe3ec4b4 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Tue Feb 11 09:58:08 2020 +0100 CAMEL-14519 - Create an AWS-DDB component based on SDK v2, fixed region description --- .../org/apache/camel/component/aws2/ddb/Ddb2Configuration.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/camel-aws2-ddb/src/main/java/org/apache/camel/component/aws2/ddb/Ddb2Configuration.java b/components/camel-aws2-ddb/src/main/java/org/apache/camel/component/aws2/ddb/Ddb2Configuration.java index ef317bf..b38623b 100644 --- a/components/camel-aws2-ddb/src/main/java/org/apache/camel/component/aws2/ddb/Ddb2Configuration.java +++ b/components/camel-aws2-ddb/src/main/java/org/apache/camel/component/aws2/ddb/Ddb2Configuration.java @@ -197,10 +197,10 @@ public class Ddb2Configuration implements Cloneable { } /** - * To define a proxy port when instantiating the DDB client. When using this - * parameter, the configuration will expect the capitalized name of the - * region (for example AP_EAST_1) You'll need to use the name - * Regions.EU_WEST_1.name() + * The region in which DynamoDB client needs to work. When using this + * parameter, the configuration will expect the lowercase name of the + * region (for example ap-east-1) You'll need to use the name + * Region.EU_WEST_1.id() */ public void setProxyPort(Integer proxyPort) { this.proxyPort = proxyPort;