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 24663ce052ffc24a2e03567f7b49b6e7f61f114b Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Mon Aug 3 14:34:12 2020 +0200 Camel-AWS2-KMS: Added CreateKey Example --- components/camel-aws2-kms/src/main/docs/aws2-kms-component.adoc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/components/camel-aws2-kms/src/main/docs/aws2-kms-component.adoc b/components/camel-aws2-kms/src/main/docs/aws2-kms-component.adoc index 4a0e255..bbd37e7 100644 --- a/components/camel-aws2-kms/src/main/docs/aws2-kms-component.adoc +++ b/components/camel-aws2-kms/src/main/docs/aws2-kms-component.adoc @@ -157,6 +157,14 @@ from("direct:listKeys") .to("aws2-kms://test?kmsClient=#amazonKmsClient&operation=listKeys") -------------------------------------------------------------------------------- +- createKey: this operation will create a key in KMS + +[source,java] +-------------------------------------------------------------------------------- +from("direct:listKeys") + .to("aws2-kms://test?kmsClient=#amazonKmsClient&operation=createKey") +-------------------------------------------------------------------------------- + == Automatic detection of KmsClient client in registry The component is capable of detecting the presence of an KmsClient bean into the registry.