2.0.48 • Published 3 years ago
typescript-aws-lambda-helper v2.0.48
Install
npm install typescript-aws-lambda-helper@latest
Usage
Default - running in Lambda in your own account
const logger = new Logger(LogLevel.Trace);
const helper = new LambdaHelper(logger);
const response = await helper.InvokeAsync('lambdaName', 'payload');
Running in separate account or not in Lambda
import * as Lambda from '@aws-sdk/client-lambda';
const logger = new Logger(LogLevel.Trace);
const options: Lambda.LambdaClientConfig = {
accessKeyId: '{access_key}',
secretAccessKey: '{secret_key}',
region: 'us-east-1',
};
const repository = new Lambda.Lambda(options);
const helper = new LambdaHelper(logger, repository);
const response = await helper.InvokeAsync('lambdaName', 'payload');
Notes
If no options are supplied, will default to us-east-1
as the region
Development
Clone the latest and run
npm run prep
to install packages and prep the git hooks
2.0.48
3 years ago
2.0.47
3 years ago
2.0.46
4 years ago
2.0.45
4 years ago
2.0.44
4 years ago
2.0.42
4 years ago
2.0.43
4 years ago
2.0.40
4 years ago
2.0.41
4 years ago
2.0.29
4 years ago
2.0.38
4 years ago
1.0.186
4 years ago
2.0.15
4 years ago
2.0.14
4 years ago
2.0.2
4 years ago
1.0.164
5 years ago
1.0.151
5 years ago
1.0.125
5 years ago
1.0.104
5 years ago
1.0.91
5 years ago
1.0.76
5 years ago
1.0.60
5 years ago
1.0.39
5 years ago
1.0.37
5 years ago
1.0.27
5 years ago
1.0.19
5 years ago
1.0.17
5 years ago
1.0.16
5 years ago
1.0.10
5 years ago
1.0.8
5 years ago
1.0.7
5 years ago
1.0.15
5 years ago
1.0.3
5 years ago
1.0.2
5 years ago
1.0.1
5 years ago