Package Exports
- typescript-aws-apigateway-helper
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (typescript-aws-apigateway-helper) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
typescript-aws-apigateway-helper
Install
npm install typescript-aws-apigateway-helper@latestUsage
Default - running in Lambda in your own account
const logger = new Logger(LogLevel.Trace);
const helper = new APIGatewayHelper(logger);
const response = await helper.CreateApiKeyAsync('apiKey',
'description',
'value');Running in separate account or not in Lambda
const logger = new Logger(LogLevel.Trace);
const options: AWS.APIGateway.ClientConfiguration = {
accessKeyId: '{access_key}',
secretAccessKey: '{secret_key}',
region: 'us-east-1',
};
const repository = new AWS.APIGateway(options);
const helper = new APIGatewayHelper(logger,
repository);
const response = await helper.CreateApiKeyAsync('apiKey',
'description',
'value');