camel-aws-kinesis-sink-kafka-connector sink configuration

Connector Description: Send data to AWS Kinesis. The Kamelet expects the following header: - `partition` / `ce-partition`: to set the Kinesis partition key If the header won’t be set the exchange ID will be used. The Kamelet is also able to recognize the following header: - `sequence-number` / `ce-sequencenumber`: to set the Sequence number This header is optional.

When using camel-aws-kinesis-sink-kafka-connector as sink make sure to use the following Maven dependency to have support for the connector:

<dependency>
  <groupId>org.apache.camel.kafkaconnector</groupId>
  <artifactId>camel-aws-kinesis-sink-kafka-connector</artifactId>
  <version>x.x.x</version>
  <!-- use the same version as your Camel Kafka connector version -->
</dependency>

To use this sink connector in Kafka connect you’ll need to set the following connector.class

connector.class=org.apache.camel.kafkaconnector.awskinesissink.CamelAwskinesissinkSinkConnector

The camel-aws-kinesis-sink sink connector supports 4 options, which are listed below.

Name Description Default Priority

camel.kamelet.aws-kinesis-sink.stream

Required The Kinesis stream that you want to access (needs to be created in advance).

HIGH

camel.kamelet.aws-kinesis-sink.accessKey

Required The access key obtained from AWS.

HIGH

camel.kamelet.aws-kinesis-sink.secretKey

Required The secret key obtained from AWS.

HIGH

camel.kamelet.aws-kinesis-sink.region

Required The AWS region to connect to Example: eu-west-1.

HIGH

The camel-aws-kinesis-sink sink connector has no converters out of the box.

The camel-aws-kinesis-sink sink connector has no transforms out of the box.

The camel-aws-kinesis-sink sink connector has no aggregation strategies out of the box.