This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit 08bef2f133dcf91d1ae24f2e80923fd207ff6842 Author: Andrea Cosentino <[email protected]> AuthorDate: Tue Jul 20 14:27:13 2021 +0200 Added IgnoreBody parameter to AWS S3 Source Kamelet --- .../src/main/resources/kamelets/aws-s3-source.kamelet.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/library/camel-kamelets/src/main/resources/kamelets/aws-s3-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/aws-s3-source.kamelet.yaml index a94a882..a7df07c 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/aws-s3-source.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/aws-s3-source.kamelet.yaml @@ -71,6 +71,13 @@ spec: description: The AWS S3 bucket prefix to consider while searching type: string example: 'folder/' + ignoreBody: + title: Ignore Body + description: If it is true, the S3 Object Body will be ignored completely, if it is set to false the S3 Object will be put in the body. Setting this to true, will override any behavior defined by includeBody option. + type: boolean + x-descriptors: + - 'urn:alm:descriptor:com.tectonic.ui:checkbox' + default: false dependencies: - "camel:aws2-s3" - "camel:kamelet" @@ -83,6 +90,7 @@ spec: accessKey: "{{accessKey}}" region: "{{region}}" includeBody: "{{includeBody}}" + includeBody: "{{ignoreBody}}" deleteAfterRead: "{{deleteAfterRead}}" prefix: "{{?prefix}}" steps:
