Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/aws-lambda

Package Overview
Dependencies
Maintainers
1
Versions
181
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/aws-lambda - npm Package Compare versions

Comparing version 0.0.13 to 0.0.14

58

aws-lambda/index.d.ts

@@ -171,2 +171,60 @@ // Type definitions for AWS Lambda

/**
* CloudFormation Custom Resource event and response
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/crpg-ref.html
*/
type CloudFormationCustomResourceEventCommon = {
ServiceToken: string;
ResponseURL: string;
StackId: string;
RequestId: string;
LogicalResourceId: string;
ResourceType: string;
ResourceProperties: {
ServiceToken: string;
[Key: string]: any;
}
}
type CloudFormationCustomResourceCreateEvent = CloudFormationCustomResourceEventCommon & {
RequestType: "Create";
}
type CloudFormationCustomResourceUpdateEvent = CloudFormationCustomResourceEventCommon & {
RequestType: "Update";
PhysicalResourceId: string;
OldResourceProperties: {
[Key: string]: any;
};
}
type CloudFormationCustomResourceDeleteEvent = CloudFormationCustomResourceEventCommon & {
RequestType: "Delete";
PhysicalResourceId: string;
}
export type CloudFormationCustomResourceEvent = CloudFormationCustomResourceCreateEvent | CloudFormationCustomResourceUpdateEvent | CloudFormationCustomResourceDeleteEvent;
type CloudFormationCustomResourceResponseCommon = {
PhysicalResourceId: string;
StackId: string;
RequestId: string;
LogicalResourceId: string;
Data?: {
[Key: string]: any;
}
}
type CloudFormationCustomResourceSuccessResponse = CloudFormationCustomResourceResponseCommon & {
Status: "SUCCESS";
Reason?: string;
}
type CloudFormationCustomResourceFailedResponse = CloudFormationCustomResourceResponseCommon & {
Status: "FAILED";
Reason: string;
}
export type CloudFormationCustomResourceResponse = CloudFormationCustomResourceSuccessResponse | CloudFormationCustomResourceFailedResponse;
// Context

@@ -173,0 +231,0 @@ // http://docs.aws.amazon.com/lambda/latest/dg/nodejs-prog-model-context.html

4

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

@@ -40,4 +40,4 @@ "license": "MIT",

"peerDependencies": {},
"typesPublisherContentHash": "f4bad05340e65922991e6e9beb7337f7180ad170829186e3b345fe88a5755846",
"typesPublisherContentHash": "5011539e4e6d0468e5f64e0cec98401f9838a74c44eb9416a735771d31534254",
"typeScriptVersion": "2.0"
}

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

Additional Details
* Last updated: Fri, 16 Jun 2017 16:37:50 GMT
* Last updated: Fri, 23 Jun 2017 14:03:03 GMT
* Dependencies: none

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc