UNPKG

4.11 kBTypeScriptView Raw
1// Type definitions for AWS Lambda 8.10
2// Project: http://docs.aws.amazon.com/lambda
3// Definitions by: James Darbyshire <https://github.com/darbio>
4// Michael Skarum <https://github.com/skarum>
5// Stef Heyenrath <https://github.com/StefH>
6// Toby Hede <https://github.com/tobyhede>
7// Rich Buggy <https://github.com/buggy>
8// Yoriki Yamaguchi <https://github.com/y13i>
9// wwwy3y3 <https://github.com/wwwy3y3>
10// Ishaan Malhi <https://github.com/OrthoDex>
11// Michael Marner <https://github.com/MichaelMarner>
12// Daniel Cottone <https://github.com/daniel-cottone>
13// Kostya Misura <https://github.com/kostya-misura>
14// Markus Tacker <https://github.com/coderbyheart>
15// Palmi Valgeirsson <https://github.com/palmithor>
16// Danilo Raisi <https://github.com/daniloraisi>
17// Simon Buchan <https://github.com/simonbuchan>
18// David Hayden <https://github.com/Haydabase>
19// Chris Redekop <https://github.com/repl-chris>
20// Aneil Mallavarapu <https://github.com/aneilbaboo>
21// Jeremy Nagel <https://github.com/jeznag>
22// Louis Larry <https://github.com/louislarry>
23// Daniel Papukchiev <https://github.com/dpapukchiev>
24// Oliver Hookins <https://github.com/ohookins>
25// Trevor Leach <https://github.com/trevor-leach>
26// James Gregory <https://github.com/jagregory>
27// Erik Dalén <https://github.com/dalen>
28// Loïk Gaonac'h <https://github.com/loikg>
29// Roberto Zen <https://github.com/skyzenr>
30// Grzegorz Redlicki <https://github.com/redlickigrzegorz>
31// Juan Carbonel <https://github.com/juancarbonel>
32// Peter McIntyre <https://github.com/pwmcintyre>
33// Alex Bolenok <https://github.com/alex-bolenok-centralreach>
34// Marian Zange <https://github.com/marianzange>
35// Alexander Pepper <https://github.com/apepper>
36// Alessandro Palumbo <https://github.com/apalumbo>
37// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
38// TypeScript Version: 3.0
39
40export * from "./handler";
41export * from "./common/api-gateway";
42export * from "./common/cloudfront";
43export * from "./trigger/alb";
44// TODO: export * from "./trigger/alexa";
45export * from "./trigger/api-gateway-authorizer";
46export * from "./trigger/api-gateway-proxy";
47// CloudTrail section just describes using S3 to trigger on cloudtrail changes.
48export * from "./trigger/cloudformation-custom-resource";
49export * from "./trigger/cloudfront-request";
50export * from "./trigger/cloudfront-response";
51export * from "./trigger/cloudwatch-events";
52export * from "./trigger/cloudwatch-logs";
53// TODO: export * from "./trigger/codecommit";
54export * from "./trigger/codepipeline";
55export * from "./trigger/codepipeline-cloudwatch";
56export * from "./trigger/codepipeline-cloudwatch-action";
57export * from "./trigger/codepipeline-cloudwatch-pipeline";
58export * from "./trigger/codepipeline-cloudwatch-stage";
59// TODO: export * from "./trigger/cognito-sync";
60export * from "./trigger/cognito-user-pool-trigger";
61// TODO: export * from "./trigger/config";
62export * from "./trigger/dynamodb-stream";
63export * from "./trigger/eventbridge";
64// ElastiCache section just describes using lambdas in an ElastiCache context (VPC issues, etc.)
65// EC2 events are delivered using cloudwatch events...
66// TODO: export * from "./trigger/iot"; for "IoT Events"
67export * from "./trigger/kinesis-firehose-transformation";
68export * from "./trigger/kinesis-stream";
69export * from "./trigger/lex";
70// RDS events are delivered using SNS events...
71export * from "./trigger/s3";
72export * from "./trigger/s3-batch";
73// SES events are delivered using SNS events...
74export * from "./trigger/sns";
75export * from "./trigger/sqs";
76
77export as namespace AWSLambda;