1.0.0 • Published 11 months ago

@aws/workbench-core-base v1.0.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
11 months ago

Workbench Core Base

main branch coverage

codecov

develop branch coverage

codecov

This package is intended to provide a base AWS Service class that encapsulates all the service clients and commands that the application currently requires. We use aws-sdk V3 to improve the load-time of the modules imported at runtime.

Usage

import { AwsService } from '@aws/workbench-core-base';
const aws = new AwsService({ region: 'us-east-1' });
const params = { StackName: 'testStack' };                            // construct params
const response = await aws.cloudformation.describeStacks(params);     // perform SDK call