@types/aws-lambda
Advanced tools
Comparing version 0.0.24 to 0.0.25
@@ -297,2 +297,33 @@ // Type definitions for AWS Lambda | ||
/** | ||
* See http://docs.aws.amazon.com/lambda/latest/dg/eventsources.html#eventsources-cloudwatch-logs | ||
*/ | ||
interface CloudWatchLogsEvent { | ||
awslogs: CloudWatchLogsEventData; | ||
} | ||
interface CloudWatchLogsEventData { | ||
data: string; | ||
} | ||
interface CloudWatchLogsDecodedData { | ||
owner: string; | ||
logGroup: string; | ||
logStream: string; | ||
subscriptionFilters: string[]; | ||
messageType: string; | ||
logEvents: CloudWatchLogsLogEvent[]; | ||
} | ||
/** | ||
* See http://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/SubscriptionFilters.html#LambdaFunctionExample | ||
*/ | ||
interface CloudWatchLogsLogEvent { | ||
id: string; | ||
timestamp: number; | ||
message: string; | ||
} | ||
// Context | ||
@@ -299,0 +330,0 @@ // http://docs.aws.amazon.com/lambda/latest/dg/nodejs-prog-model-context.html |
{ | ||
"name": "@types/aws-lambda", | ||
"version": "0.0.24", | ||
"version": "0.0.25", | ||
"description": "TypeScript definitions for AWS Lambda", | ||
@@ -73,4 +73,4 @@ "license": "MIT", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "44be5101c00a1ed67d4d91d7baedba62c279ae7d495eddfad22ba6c1a28c6cd2", | ||
"typesPublisherContentHash": "2c798e2690f7ba333e3cd3084de4a83c67ed9072849bc87fc82023fdeab50017", | ||
"typeScriptVersion": "2.2" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Wed, 13 Dec 2017 23:02:41 GMT | ||
* Last updated: Tue, 02 Jan 2018 23:54:45 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: AWSLambda |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
19492
451