@kmhgmbh/aws-wrapper
TypeScript icon, indicating that this package has built-in type declarations

1.5.1 • Public • Published

README

This package provides convenience functions for common AWS SDK tasks.

Installation

npm i @kmhgmbh/aws-wrapper

Examples

Retrieving configuration from parameter store

Retrieving all parameters under a given path as a map:

import { getParameters } from '@kmhgmbh/aws-wrapper';

async function withParametersFromAWS() {
  const configuration = await getParameters('/Config/Dev/MyService');
  // …
}

Retrieving a single parameter by name/full path:

import { getParameter } from '@kmhgmbh/aws-wrapper';

async function withParameterFromAWS() {
  const configuration = await getParameter('my.parameter.name');
  // …
}

Readme

Keywords

Package Sidebar

Install

npm i @kmhgmbh/aws-wrapper

Weekly Downloads

16

Version

1.5.1

License

MIT

Unpacked Size

41.8 kB

Total Files

15

Last publish

Collaborators

  • ruslan92
  • mlabenski
  • rgiermann-kmh
  • julianpung
  • cpropp-kmh