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 8783bd12f6cf2d994ff9fd783af09713525a24bf Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Thu May 23 12:06:39 2019 +0200 CAMEL-13562 - Added docs --- .../camel-aws-sqs/src/main/docs/aws-sqs-component.adoc | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/components/camel-aws-sqs/src/main/docs/aws-sqs-component.adoc b/components/camel-aws-sqs/src/main/docs/aws-sqs-component.adoc index 97bbf19..3b404da 100644 --- a/components/camel-aws-sqs/src/main/docs/aws-sqs-component.adoc +++ b/components/camel-aws-sqs/src/main/docs/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.