This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch kinesis-firehose in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit dfc2cdbdfb4e4fef81cae4682de1db29efcdd858 Author: Andrea Cosentino <[email protected]> AuthorDate: Fri Apr 2 14:45:15 2021 +0200 Added AWS Kinesis Firehose Sink Kamelet --- aws-kinesis-firehose-sink.kamelet.yaml | 51 ++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/aws-kinesis-firehose-sink.kamelet.yaml b/aws-kinesis-firehose-sink.kamelet.yaml new file mode 100644 index 0000000..377bce4 --- /dev/null +++ b/aws-kinesis-firehose-sink.kamelet.yaml @@ -0,0 +1,51 @@ +apiVersion: camel.apache.org/v1alpha1 +kind: Kamelet +metadata: + name: aws-kinesis-firehose-sink + annotations: + camel.apache.org/kamelet.icon: "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+DQo8c3ZnICAgdmlld0JveD0iMCAwIDI1NiAyNTciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgcHJlc2VydmVBc3BlY3RSYXRpbz0ieE1pZFlNaWQiPg0KCTxnPg0KCQk8cGF0aCBkPSJNOTguODc1LDIzMi4wMzMgTDcyLjQ0MiwyMjQuNjI1IEw0Ny40NDEsMTk2LjExNyBMNzguNzEzLDE5NS4yNTQgTDk4Ljg3NSwyMzIuMDMzIiBmaWxsPSIjOTk1QjgwIj [...] + camel.apache.org/provider: "Apache Software Foundation" + labels: + camel.apache.org/kamelet.type: sink +spec: + definition: + title: AWS Kinesis Firehose Sink + description: |- + Send message to an AWS Kinesis Firehose Stream + required: + - streamName + - accessKey + - secretKey + - region + properties: + streamName: + title: Stream name + description: The name of the stream we want to send to data to + type: string + accessKey: + title: Access Key + description: The access key obtained from AWS + type: string + x-descriptors: + - urn:alm:descriptor:com.tectonic.ui:password + secretKey: + title: Secret Key + description: The secret key obtained from AWS + type: string + x-descriptors: + - urn:alm:descriptor:com.tectonic.ui:password + region: + title: AWS Region + description: The AWS region to connect to + type: string + example: eu-west-1 + flow: + from: + uri: kamelet:source + steps: + - to: + uri: "aws2-kinesis-firehose:{{streamName}}" + parameters: + accessKey: "{{accessKey}}" + secretKey: "{{secretKey}}" + region: "{{region}}"
