amazon-api-gateway-client

0.1.4 • Public • Published

amazon-api-gateway-client

A client library for Amazon API Gateway.

Install

npm install amazon-api-gateway-client

Usage

var Client = require('amazon-api-gateway-client').Client;

var client = new Client({
  accessKeyId: '...',
  region: '...',
  secretAccessKey: '...'
});

client.createRestapi({ name: 'MyRestapi' }).then(function (restapi) {
  // ...
});

client.listRestapis().then(function (restapis) {
  // ...
});

Development

npm install
npm run

Readme

Keywords

none

Package Sidebar

Install

npm i amazon-api-gateway-client

Weekly Downloads

2

Version

0.1.4

License

MIT

Last publish

Collaborators

  • r7kamura