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 327f33a580c7a822a592ded08b3e73221e16cdbd
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Thu Jul 30 14:13:30 2020 +0200

    Regen docs
---
 docs/components/modules/ROOT/pages/aws2-sqs-component.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/components/modules/ROOT/pages/aws2-sqs-component.adoc 
b/docs/components/modules/ROOT/pages/aws2-sqs-component.adoc
index 1b5400c..9e4a0ac 100644
--- a/docs/components/modules/ROOT/pages/aws2-sqs-component.adoc
+++ b/docs/components/modules/ROOT/pages/aws2-sqs-component.adoc
@@ -353,7 +353,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
@@ -367,7 +367,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
 
@@ -378,7 +378,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
 

Reply via email to