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 9df30adb7e25e8626013a61666d2d7757571ef3d Author: Andrea Cosentino <[email protected]> AuthorDate: Mon Jan 27 15:17:05 2020 +0100 CAMEL-14446 - Create an AWS-ECS component based on SDK v2 - Regen --- .../camel-aws2-ecs/src/main/docs/aws2-ecs-component.adoc | 2 +- .../builder/endpoint/dsl/ECS2EndpointBuilderFactory.java | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/components/camel-aws2-ecs/src/main/docs/aws2-ecs-component.adoc b/components/camel-aws2-ecs/src/main/docs/aws2-ecs-component.adoc index 6b47f08..712eced 100644 --- a/components/camel-aws2-ecs/src/main/docs/aws2-ecs-component.adoc +++ b/components/camel-aws2-ecs/src/main/docs/aws2-ecs-component.adoc @@ -81,7 +81,7 @@ with the following path and query parameters: | *proxyHost* (producer) | To define a proxy host when instantiating the ECS client | | String | *proxyPort* (producer) | To define a proxy port when instantiating the ECS client | | Integer | *proxyProtocol* (producer) | To define a proxy protocol when instantiating the ECS client | HTTPS | Protocol -| *region* (producer) | The region in which ECS client needs to work. 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() | | String +| *region* (producer) | The region in which Translate 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() | | String | *secretKey* (producer) | Amazon AWS Secret Key | | String | *basicPropertyBinding* (advanced) | Whether the endpoint should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities | false | boolean | *synchronous* (advanced) | Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). | false | boolean diff --git a/core/camel-endpointdsl/src/main/java/org/apache/camel/builder/endpoint/dsl/ECS2EndpointBuilderFactory.java b/core/camel-endpointdsl/src/main/java/org/apache/camel/builder/endpoint/dsl/ECS2EndpointBuilderFactory.java index 93d50bd..26fd136 100644 --- a/core/camel-endpointdsl/src/main/java/org/apache/camel/builder/endpoint/dsl/ECS2EndpointBuilderFactory.java +++ b/core/camel-endpointdsl/src/main/java/org/apache/camel/builder/endpoint/dsl/ECS2EndpointBuilderFactory.java @@ -22,7 +22,7 @@ import org.apache.camel.builder.EndpointProducerBuilder; import org.apache.camel.builder.endpoint.AbstractEndpointBuilder; /** - * The aws-ecs is used for managing Amazon ECS + * The aws2-ecs is used for managing Amazon ECS * * Generated by camel-package-maven-plugin - do not edit this file! */ @@ -199,10 +199,10 @@ public interface ECS2EndpointBuilderFactory { return this; } /** - * The region in which ECS client needs to work. 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 Translate 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(). * * The option is a: <code>java.lang.String</code> type. * @@ -312,7 +312,7 @@ public interface ECS2EndpointBuilderFactory { public interface ECS2Builders { /** * AWS2 ECS (camel-aws2-ecs) - * The aws-ecs is used for managing Amazon ECS + * The aws2-ecs is used for managing Amazon ECS * * Category: cloud,management * Since: 3.1 @@ -329,7 +329,7 @@ public interface ECS2EndpointBuilderFactory { } /** * AWS2 ECS (camel-aws2-ecs) - * The aws-ecs is used for managing Amazon ECS + * The aws2-ecs is used for managing Amazon ECS * * Category: cloud,management * Since: 3.1
