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 fb380318733c5efb46f7b9f6b4372141eca38546 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Tue Aug 4 11:57:07 2020 +0200 Camel-AWS2-SQS: Fixed listQueues region example --- components/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 3e461ef..eeb7f42 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 @@ -373,7 +373,8 @@ Use listQueues operation to list queues. ------------------------------------------------------------------------------------------------------ from("direct:start") - .setHeader(SqsConstants.SQS_OPERATION, constant("listQueues")).to("aws2-sqs://camel-1?accessKey=RAW(xxx)&secretKey=RAW(xxx)®ion=EU_WEST_1"); + .setHeader(SqsConstants.SQS_OPERATION, constant("listQueues")) + .to("aws2-sqs://camel-1?accessKey=RAW(xxx)&secretKey=RAW(xxx)®ion=eu-west-1"); ------------------------------------------------------------------------------------------------------ As result you'll get an exchange containing a `ListQueuesResponse` instance, that you can examinate to check the actual queues.