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 2021/07/20 12:32:23 UTC

[camel-kamelets] 03/05: Added IgnoreBody parameter to AWS S3 Source Kamelet

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch ignorebody
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 4345c4226c732ac428b8e30e65b1352e850366f3
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Jul 20 14:27:59 2021 +0200

    Added IgnoreBody parameter to AWS S3 Source Kamelet
---
 docs/modules/ROOT/pages/aws-s3-source.adoc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/docs/modules/ROOT/pages/aws-s3-source.adoc b/docs/modules/ROOT/pages/aws-s3-source.adoc
index 901911f..d08ad61 100644
--- a/docs/modules/ROOT/pages/aws-s3-source.adoc
+++ b/docs/modules/ROOT/pages/aws-s3-source.adoc
@@ -19,6 +19,7 @@ The following table summarizes the configuration options available for the `aws-
 | *secretKey {empty}* *| Secret Key| The secret key obtained from AWS| string| | 
 | autoCreateBucket| Autocreate Bucket| Setting the autocreation of the S3 bucket bucketName.| boolean| `false`| 
 | deleteAfterRead| Auto-delete Objects| Delete objects after consuming them| boolean| `true`| 
+| ignoreBody| Ignore Body| 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.| boolean| `false`| 
 | includeBody| Include Body| If it is true, the exchange will be consumed and put into the body and closed. If false the S3Object stream will be put raw into the body and the headers will be set with the S3 object metadata.| boolean| `true`| 
 | prefix| Prefix| The AWS S3 bucket prefix to consider while searching| string| | `"folder/"`
 |===