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/03/24 07:43:39 UTC

[camel-kamelets] branch aws-s3 created (now ea98e28)

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

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


      at ea98e28  AWS S3 Source Kamelet: Added autoCreateBucket option with default false

This branch includes the following new commits:

     new ea98e28  AWS S3 Source Kamelet: Added autoCreateBucket option with default false

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[camel-kamelets] 01/01: AWS S3 Source Kamelet: Added autoCreateBucket option with default false

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit ea98e282e5b27afc69d3084fe9ae0b610f39895e
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Mar 24 08:42:50 2021 +0100

    AWS S3 Source Kamelet: Added autoCreateBucket option with default false
---
 aws-s3-source.kamelet.yaml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/aws-s3-source.kamelet.yaml b/aws-s3-source.kamelet.yaml
index bb8ba07..77f9bee 100644
--- a/aws-s3-source.kamelet.yaml
+++ b/aws-s3-source.kamelet.yaml
@@ -46,6 +46,13 @@ spec:
         description: The AWS region to connect to
         type: string
         example: eu-west-1
+      autoCreateBucket:
+        title: Autocreate bucket
+        description: Setting the autocreation of the S3 bucket bucketName. 
+        type: boolean
+        x-descriptors:
+        - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
+        default: false
   types:
     out:
       mediaType: application/json
@@ -53,6 +60,7 @@ spec:
     from:
       uri: "aws2-s3:{{bucketNameOrArn}}"
       parameters:
+        autoCreateBucket: "{{autoCreateBucket}}"
         secretKey: "{{secretKey}}"
         accessKey: "{{accessKey}}"
         region: "{{region}}"