You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/02/20 12:39:40 UTC

[camel] 02/09: CAMEL-14556 - Create an AWS-Lambda component based on SDK v2, docs

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 76040a4a9635a67a7642dcf4e6638a4da59f7468
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Feb 20 12:59:38 2020 +0100

    CAMEL-14556 - Create an AWS-Lambda component based on SDK v2, docs
---
 ...{aws-lambda-component.adoc => aws2-lambda-component.adoc} | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/components/camel-aws2-lambda/src/main/docs/aws-lambda-component.adoc b/components/camel-aws2-lambda/src/main/docs/aws2-lambda-component.adoc
similarity index 97%
rename from components/camel-aws2-lambda/src/main/docs/aws-lambda-component.adoc
rename to components/camel-aws2-lambda/src/main/docs/aws2-lambda-component.adoc
index 8fe3cac..ce2fc90 100644
--- a/components/camel-aws2-lambda/src/main/docs/aws-lambda-component.adoc
+++ b/components/camel-aws2-lambda/src/main/docs/aws2-lambda-component.adoc
@@ -1,5 +1,5 @@
-[[aws-lambda-component]]
-= AWS Lambda Component
+[[aws2-lambda-component]]
+= AWS2 Lambda Component
 
 *Since Camel 2.20*
 
@@ -26,7 +26,7 @@ Lambda is regional service. Unlike S3 bucket, Lambda function created in a given
 
 [source,java]
 -------------------------
-aws-lambda://functionName[?options]
+aws2-lambda://functionName[?options]
 -------------------------
 
 You can append query options to the URI in the following format,
@@ -201,9 +201,9 @@ The default is 3 seconds.|No
 
 To have a full understanding of how the component works, you may have a look at this https://github.com/apache/camel/blob/master/components/camel-aws/src/test/java/org/apache/camel/component/aws/lambda/integration/LambdaComponentIntegrationTest.java[integration test]
 
-== Automatic detection of AmazonLambda client in registry
+== Automatic detection of LambdaClient client in registry
 
-The component is capable of detecting the presence of an AmazonLambda bean into the registry.
+The component is capable of detecting the presence of an LambdaClient bean into the registry.
 If it's the only instance of that type it will be used as client and you won't have to define it as uri parameter.
 This may be really useful for smarter configuration of the endpoint.
 
@@ -218,7 +218,7 @@ Maven users will need to add the following dependency to their pom.xml.
 ---------------------------------------
 <dependency>
     <groupId>org.apache.camel</groupId>
-    <artifactId>camel-aws-lambda</artifactId>
+    <artifactId>camel-aws2-lambda</artifactId>
     <version>${camel-version}</version>
 </dependency>
 ---------------------------------------