Socket
Socket
Sign inDemoInstall

@types/aws-lambda

Package Overview
Dependencies
0
Maintainers
1
Versions
176
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 8.10.101 to 8.10.102

4

aws-lambda/package.json
{
"name": "@types/aws-lambda",
"version": "8.10.101",
"version": "8.10.102",
"description": "TypeScript definitions for AWS Lambda",

@@ -228,4 +228,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/aws-lambda",

"dependencies": {},
"typesPublisherContentHash": "b62431ce8007d7412ae85a9bce177f526057b263b55cb490e1cda0773aa91342",
"typesPublisherContentHash": "4cf3068f1a5194e4f2c0b223bd503f9c3130017f9f5a7c72cd7b34c7be7c3a5b",
"typeScriptVersion": "4.0"
}

@@ -11,3 +11,3 @@ # Installation

### Additional Details
* Last updated: Mon, 20 Jun 2022 13:31:36 GMT
* Last updated: Wed, 10 Aug 2022 07:32:10 GMT
* Dependencies: none

@@ -14,0 +14,0 @@ * Global values: `AWSLambda`

import { Handler } from "../handler";
export type KinesisStreamHandler = Handler<KinesisStreamEvent, void>;
// tslint:disable-next-line:void-return
export type KinesisStreamHandler = Handler<KinesisStreamEvent, KinesisStreamBatchResponse | void>;

@@ -29,1 +30,10 @@ // Kinesis Streams

}
// https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html
export interface KinesisStreamBatchResponse {
batchItemFailures: KinesisStreamBatchItemFailure[];
}
export interface KinesisStreamBatchItemFailure {
itemIdentifier: string;
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc