0.1.4 • Published 10 years ago

amazon-api-gateway-client v0.1.4

Weekly downloads
3
License
MIT
Repository
github
Last release
10 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

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago