UNPKG

@studyportals/sp-r2d2

Version:

A framework that contains various components used when developing projects that will be deployed via AWS λ.

11 lines (10 loc) 445 B
import { FirehoseClient } from '@aws-sdk/client-firehose'; import { IFirehoseAdapter } from '../aws-services-adapters-interfaces/i-firehose-adapter.interface'; export declare class FirehoseAdapter implements IFirehoseAdapter { private streamName; private region; private _client?; protected get client(): FirehoseClient; constructor(streamName: string, region: string); stream(record: string): Promise<void>; }