@project-furnace/aws-kinesis-stream-connector
v1.0.1
Published
Sends input data to an AWS Kineses Stream.
Keywords
Readme
AWS Kineses Stream Connector
Sends input data to an AWS Kineses Stream.
Usage
Directly through Connector Hub
Install the package to make it available on your system.
npm i @project-furnace/aws-kinesis-stream-connectorVia Docker Image
Ensure the following build argument and environment variable is passed to the container:
INPUT_CONNECTOR="@project-furnace/aws-kinesis-stream-connector"Minimal Configuration
This is the minimal config required for you to get going:
{
"stream": "the name of your kinesis stream",
}All Available Configuration Options
| Option | Description | Required | Default | | ------ | ----------- | -------- | --------| | accessKeyId | Your AWS access key ID. | No | null | | region | The AWS region for you Kinesis stream | No | null | | retries | The total number of retries a push can have if it fails | No | 3 | | retryDelay | The delay in milliseconds between retries | No | 8000 | | secretAccessKey | Your AWS secret access key. | No | null | | stream | The name of your Kinesis stream you're pushing data to | Yes | null |
