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/07/30 12:16:13 UTC

[camel] 01/02: Camel-AWS2-SQS: Fixed class returned from producer operation in 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 42442bf01f43615413c04ebd1a6ccd663edf60d6
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Jul 30 14:11:41 2020 +0200

    Camel-AWS2-SQS: Fixed class returned from producer operation in docs
---
 components/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/components/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc b/components/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc
index 733c372..19b69b7 100644
--- a/components/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc
+++ b/components/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc
@@ -351,7 +351,7 @@ from("direct:start")
   .to("aws2-sqs://camel-1?accessKey=RAW(xxx)&secretKey=RAW(xxx)&region=EU_WEST_1");
 ------------------------------------------------------------------------------------------------------
 
-As result you'll get an exchange containing a `SendMessageBatchResult` instance, that you can examinate to check what messages were successfull and what not.
+As result you'll get an exchange containing a `SendMessageBatchResponse` instance, that you can examinate to check what messages were successfull and what not.
 The id set on each message of the batch will be a Random UUID.
 
 == Delete single Message
@@ -365,7 +365,7 @@ from("direct:start")
   .to("aws2-sqs://camel-1?accessKey=RAW(xxx)&secretKey=RAW(xxx)&region=EU_WEST_1");
 ------------------------------------------------------------------------------------------------------
 
-As result you'll get an exchange containing a `DeleteMessageResult` instance, that you can use to check if the message was deleted or not.
+As result you'll get an exchange containing a `DeleteMessageResponse` instance, that you can use to check if the message was deleted or not.
 
 == List Queues
 
@@ -376,7 +376,7 @@ from("direct:start")
   .setHeader(SqsConstants.SQS_OPERATION, constant("listQueues")).to("aws2-sqs://camel-1?accessKey=RAW(xxx)&secretKey=RAW(xxx)&region=EU_WEST_1");
 ------------------------------------------------------------------------------------------------------
 
-As result you'll get an exchange containing a `ListQueuesResult` instance, that you can examinate to check the actual queues.
+As result you'll get an exchange containing a `ListQueuesResponse` instance, that you can examinate to check the actual queues.
 
 == Purge Queue