typescript-aws-ssm-helper
TypeScript icon, indicating that this package has built-in type declarations

2.0.45 • Public • Published

typescript-aws-ssm-helper

Typescript helper functions for AWS SSM service

CI/CD codecov NPM Version Downloads

Install

npm install typescript-aws-ssm-helper@latest

Usage

Default - running in Lambda in your own account

const logger = new Logger(LogLevel.Trace);

const helper = new SSMHelper(logger);

const response = await helper.GetParametersByPathAsync('path');

Running in separate account or not in Lambda

import * as SSM from '@aws-sdk/client-ssm';

const logger = new Logger(LogLevel.Trace);

const options: SSM.SSMClientConfig = {
  accessKeyId: '{access_key}',
  secretAccessKey: '{secret_key}',
  region: 'us-east-1',
};

const repository = new SSM.SSM(options);

const helper = new SSMHelper(logger, repository);

const response = await helper.GetParametersByPathAsync('path');

Notes

If no options are supplied, will default to us-east-1 as the region

Development

Clone the latest and run

npm run prep

to install packages and prep the git hooks

Dependents (1)

Package Sidebar

Install

npm i typescript-aws-ssm-helper

Weekly Downloads

1

Version

2.0.45

License

MIT

Unpacked Size

43.2 kB

Total Files

24

Last publish

Collaborators

  • kbrashears5