UNPKG

343 BTypeScriptView Raw
1import { Kinesis } from 'aws-sdk';
2/**
3 * Puts the records into the specified stream
4 * @type {[type]}
5 */
6export declare function putRecords<T>({streamName, partitionKeys, partitionKey, recordData}: {
7 streamName: string;
8 partitionKeys?: [string];
9 partitionKey?: string;
10 recordData: T[];
11}): Promise<Kinesis.PutRecordsOutput>;