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
The following commit(s) were added to refs/heads/master by this push:
new 4f41476 Regen
4f41476 is described below
commit 4f41476779c1bac051baaa89ef122d0914c8f9d3
Author: Andrea Cosentino <[email protected]>
AuthorDate: Thu May 23 12:57:51 2019 +0200
Regen
---
docs/components/modules/ROOT/pages/aws-sqs-component.adoc | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/docs/components/modules/ROOT/pages/aws-sqs-component.adoc
b/docs/components/modules/ROOT/pages/aws-sqs-component.adoc
index 97bbf19..3b404da 100644
--- a/docs/components/modules/ROOT/pages/aws-sqs-component.adoc
+++ b/docs/components/modules/ROOT/pages/aws-sqs-component.adoc
@@ -348,6 +348,7 @@ consumers.
- single message (default)
- sendBatchMessage (from Camel 3)
- deleteMessage (from Camel 3)
+- listQueues (from Camel 3)
### Send Batch Message
@@ -374,6 +375,17 @@ from("direct:start")
As result you'll get an exchange containing a `DeleteMessageResult` instance,
that you can examinate to check if the message was deleted or not.
+### List Queues
+
+From Camel 3.x we introduce the listQueues operation.
+
+------------------------------------------------------------------------------------------------------
+from("direct:start")
+ .setHeader(SqsConstants.SQS_OPERATION,
constant("listQueues")).to("aws-sqs://camel-1?accessKey=RAW(xxx)&secretKey=RAW(xxx)®ion=EU_WEST_1");
+------------------------------------------------------------------------------------------------------
+
+As result you'll get an exchange containing a `ListQueuesResult` instance,
that you can examinate to check the actual queues.
+
### Automatic detection of AmazonSQS client in registry
From Camel 3.0.0-M3 the component will be able to detect the presence of an
AmazonSQS bean into the registry.