0.1.4 • Published 9 years ago

amazon-api-gateway-client v0.1.4

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

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
0.1.4

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago