fake_ssm
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

Fake AWS SSM (Parameter Store)

A fake parameter store for local testing. Mimics AWS SDK methods.

install

yarn add -d fake_ssm

Example

import { ParameterStore } from "fake_ssm";

let parameterStore = new ParameterStore();

let params: PutParameterInput = {
  Name: "PARAM 1",
  Type: "String",
  Value: "PARAM 1 VALUE"
};
parameterStore.putParameter(params, (err, data) => {
  if (err) {
      console.log(err);
  } else {
    console.log(data)
  }
});

/fake_ssm/

    Package Sidebar

    Install

    npm i fake_ssm

    Weekly Downloads

    0

    Version

    1.0.1

    License

    MIT

    Unpacked Size

    12.1 kB

    Total Files

    4

    Last publish

    Collaborators

    • tradeledger