@cloud-technology/api-gateway-v1-client
v0.8.24
Published
AWS REST API Gateway (V1) Provider, Utility Interface
Downloads
6
Readme
@cloud-technology/api-gateway-v1-client
AWS API Gateway REST Client
Local Development
npm run development
Unit-Testing
In order to successfully, locally unit-test (as a simple and quick proof-of-concept):
/// index.ts
( async () => await import("./src/index.js").then(async ($) => {
const service = new $.Service();
const gateweays = await service.gateways();
console.log(gateweays);
}) )();
Usage
/// index.ts
await import("./src/index.js").then(async ($) => {
const service = new $.Service();
const gateweays = await service.gateways();
console.log(gateweays);