-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathindex.d.ts
More file actions
22 lines (20 loc) · 825 Bytes
/
index.d.ts
File metadata and controls
22 lines (20 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import awsFirehose from "aws-sdk/clients/firehose";
import { AWSError } from "aws-sdk/lib/error";
import { Request } from "aws-sdk/lib/request";
import CorrelationIds from "@dazn/lambda-powertools-correlation-ids";
declare const Firehose: awsFirehose & {
putRecordWithCorrelationIds(
correlationId: CorrelationIds,
params: awsFirehose.Types.PutRecordInput,
callback?: (err: AWSError, data: awsFirehose.Types.PutRecordOutput) => void
): Request<awsFirehose.Types.PutRecordOutput, AWSError>;
putRecordBatchWithCorrelationIds(
correlationId: CorrelationIds,
params: awsFirehose.Types.PutRecordBatchInput,
callback?: (
err: AWSError,
data: awsFirehose.Types.PutRecordBatchOutput
) => void
): Request<awsFirehose.Types.PutRecordBatchOutput, AWSError>;
};
export default Firehose;