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/04/20 11:05:22 UTC

[camel] 08/24: CAMEL-14868 - Camel-AWS2-*: Where possible, give the possiblity to the end user to pass an AWS Request pojo as body, aws2-lambda create event source mapping

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 95b06cfad827742b6a7ada5650dd35d1d853f9d4
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Apr 20 12:25:29 2020 +0200

    CAMEL-14868 - Camel-AWS2-*: Where possible, give the possiblity to the end user to pass an AWS Request pojo as body, aws2-lambda create event source mapping
---
 .../camel/component/aws2/lambda/Lambda2Producer.java    | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/components/camel-aws2-lambda/src/main/java/org/apache/camel/component/aws2/lambda/Lambda2Producer.java b/components/camel-aws2-lambda/src/main/java/org/apache/camel/component/aws2/lambda/Lambda2Producer.java
index 0a15c31..ffea88c 100644
--- a/components/camel-aws2-lambda/src/main/java/org/apache/camel/component/aws2/lambda/Lambda2Producer.java
+++ b/components/camel-aws2-lambda/src/main/java/org/apache/camel/component/aws2/lambda/Lambda2Producer.java
@@ -447,7 +447,21 @@ public class Lambda2Producer extends DefaultProducer {
         }
     }
 
-    private void createEventSourceMapping(LambdaClient lambdaClient, Exchange exchange) {
+    private void createEventSourceMapping(LambdaClient lambdaClient, Exchange exchange) throws InvalidPayloadException {
+        if (getConfiguration().isPojoRequest()) {
+            Object payload = exchange.getIn().getMandatoryBody();
+            if (payload instanceof CreateEventSourceMappingRequest) {
+                CreateEventSourceMappingResponse result;
+                try {
+                    result = lambdaClient.createEventSourceMapping((CreateEventSourceMappingRequest) payload);
+                } catch (AwsServiceException ase) {
+                    LOG.trace("createEventSourceMapping command returned the error code {}", ase.awsErrorDetails().errorCode());
+                    throw ase;
+                }
+                Message message = getMessageForResponse(exchange);
+                message.setBody(result);
+            }
+        } else {
         CreateEventSourceMappingResponse result;
         try {
             CreateEventSourceMappingRequest.Builder request = CreateEventSourceMappingRequest.builder().functionName(getEndpoint().getFunction());
@@ -467,6 +481,7 @@ public class Lambda2Producer extends DefaultProducer {
         }
         Message message = getMessageForResponse(exchange);
         message.setBody(result);
+        }
     }
 
     private void deleteEventSourceMapping(LambdaClient lambdaClient, Exchange exchange) {