0.8.24 • Published 2 years ago

@cloud-technology/api-gateway-v1-client v0.8.24

Weekly downloads
-
License
BSD-2-Clause
Repository
-
Last release
2 years ago

@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);