You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/10/01 14:07:57 UTC

[camel] 02/04: Regen docs

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 e1b2bdaf9c880210ed9cd2e765f9454d437b636c
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Oct 1 16:05:25 2019 +0200

    Regen docs
---
 docs/components/modules/ROOT/pages/aws-iam-component.adoc | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/docs/components/modules/ROOT/pages/aws-iam-component.adoc b/docs/components/modules/ROOT/pages/aws-iam-component.adoc
index e401523..ebf8c19 100644
--- a/docs/components/modules/ROOT/pages/aws-iam-component.adoc
+++ b/docs/components/modules/ROOT/pages/aws-iam-component.adoc
@@ -168,6 +168,17 @@ Camel-AWS IAM component provides the following operation on the producer side:
 - addUserToGroup
 - removeUserFromGroup
 
+== Producer Examples
+
+- createUser: this operation will create a user in IAM
+
+[source,java]
+--------------------------------------------------------------------------------
+from("direct:createUser")
+    .setHeader(IAMConstants.GROUP_NAME, constant("camel"))
+    .to("aws-iam://test?iamClient=#amazonIAMClient&operation=createUser")
+--------------------------------------------------------------------------------
+
 == Automatic detection of AmazonIdentityManagement client in registry
 
 The component is capable of detecting the presence of an AmazonIdentityManagement bean into the registry.