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 1e4a50d Fixed AWS2-mq example for pojo-request 1e4a50d is described below commit 1e4a50dfbcb4a1b389b8afcc4bc14adeee08aa87 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Fri Apr 24 17:57:31 2020 +0200 Fixed AWS2-mq example for pojo-request --- components/camel-aws2-mq/src/main/docs/aws2-mq-component.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-aws2-mq/src/main/docs/aws2-mq-component.adoc b/components/camel-aws2-mq/src/main/docs/aws2-mq-component.adoc index f4dfe0f..1074495 100644 --- a/components/camel-aws2-mq/src/main/docs/aws2-mq-component.adoc +++ b/components/camel-aws2-mq/src/main/docs/aws2-mq-component.adoc @@ -176,7 +176,7 @@ Sometimes build an AWS Request can be complex, because of multiple options. We i In AWS MQ there are multiple operations you can submit, as an example for List brokers request, you can do something like: ------------------------------------------------------------------------------------------------------ -from("direct:createUser") +from("direct:aws2-mq") .setBody(ListBrokersRequest.builder().maxResults(10).build()) .to("aws2-mq://test?amazonMqClient=#amazonMqClient&operation=listBrokers&pojoRequest=true") ------------------------------------------------------------------------------------------------------