@netacea/kinesisingest
v1.5.79
Published
Kinesis Ingest module for Netacea.
Downloads
4,372
Readme
Netacea Kinesis Ingest
@netacea/kinesisingest
is a package designed to add Netacea Kinesis feedback functionality to your javascript based integration.
Installation
NPM
npm i @netacea/kinesisingest --save
Yarn
yarn add @netacea/kinesisingest
Usage
import NetaceaKinesis from '@netacea/kinesisingest'
const netacea = new NetaceaKinesis({
kinesisStreamName: 'YOUR-NETACEA-KINESIS-STREAM-NAME',
kinesisAccessKey: 'YOUR-NETACEA-KINESIS-ACCESS-KEY',
kinesisSecretKey: 'YOUR-NETACEA-KINESIS-SECRET-KEY', //OPTIONAL - if secretsManagerSecretId is provided
secretsManagerSecretId: 'YOUR-OWN-SECRET-MANAGER-SECRET-ID',
apiKey: 'YOUR-NETACEA-API-KEY'
})
await kinesis.ingest({
key: 'value'
})