1.5.1 • Published 3 years ago

@kmhgmbh/aws-wrapper v1.5.1

Weekly downloads
4
License
MIT
Repository
bitbucket
Last release
3 years ago

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');
  // …
}
1.5.1

3 years ago

1.5.0

3 years ago

1.4.0

4 years ago

1.3.1

5 years ago

1.3.0

5 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

0.9.1

5 years ago

0.9.0

5 years ago

1.0.0

5 years ago