Skip to content

guerrerocarlos/AWS-ApiGatewayManagementApi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

AWS.ApiGatewayManagementApi()

This module adds the missing ApiGatewayManagementApi() constructor to aws-sdk version 2.290.0 included by current AWS Lambda default container so that the Amazon API Gateway Management API service exposed without having to include the full aws-sdk module in the lambda build.

How to use

const ensureApiGatewayManagementApi = require('aws-apigatewaymanagementapi')
const AWS = require('aws-sdk');

ensureApiGatewayManagementApi(AWS) 

// Done, you can now use it, for example:
const managementApi = new AWS.ApiGatewayManagementApi({
  apiVersion: '2018-11-29',
});

Forward compatible

If the local aws-sdk includes ApiGatewayManagementApi then this modules does nothing.

Disclosure

The implementation is basically a Copy & Paste from aws-sdk

About

AWS Lambda's aws-sdk patch for ApiGatewayManagementApi

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published