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 3f96c2344401cd566f1df04303808c756e26bb29 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Wed Oct 2 14:31:02 2019 +0200 Camel AWS MSK: Added sample code for MSK on docs --- components/camel-aws-msk/src/main/docs/aws-msk-component.adoc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/components/camel-aws-msk/src/main/docs/aws-msk-component.adoc b/components/camel-aws-msk/src/main/docs/aws-msk-component.adoc index 25dd620..9ab0875 100644 --- a/components/camel-aws-msk/src/main/docs/aws-msk-component.adoc +++ b/components/camel-aws-msk/src/main/docs/aws-msk-component.adoc @@ -160,6 +160,16 @@ Camel-AWS MSK component provides the following operation on the producer side: - createCluster - deleteCluster +== Producer Examples + +- listBrokers: this operation will list the available MSK Brokers in AWS + +[source,java] +-------------------------------------------------------------------------------- +from("direct:listClusters") + .to("aws-msk://test?mskClient=#amazonMskClient&operation=listClusters") +-------------------------------------------------------------------------------- + == Automatic detection of AWSKafka client in registry The component is capable of detecting the presence of an AWSKafka bean into the registry.