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 e4f1ddc490b26c5d5ecb00e22e6321fc44cf2e4d Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Thu Aug 6 08:51:07 2020 +0200 Camel-AWS2-STS: Fixed assumeRole operation example --- components/camel-aws2-sts/src/main/docs/aws2-sts-component.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-aws2-sts/src/main/docs/aws2-sts-component.adoc b/components/camel-aws2-sts/src/main/docs/aws2-sts-component.adoc index 409e1d7..a5b47cc 100644 --- a/components/camel-aws2-sts/src/main/docs/aws2-sts-component.adoc +++ b/components/camel-aws2-sts/src/main/docs/aws2-sts-component.adoc @@ -138,7 +138,7 @@ Camel-AWS STS component provides the following operation on the producer side: [source,java] -------------------------------------------------------------------------------- -from("direct:createUser") +from("direct:assumeRole") .setHeader(STS2Constants.ROLE_ARN, constant("arn:123")) .setHeader(STS2Constants.ROLE_SESSION_NAME, constant("groot")) .to("aws2-sts://test?stsClient=#amazonSTSClient&operation=assumeRole")