New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

lib-query-parameter-store

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lib-query-parameter-store

SSM adapter lib

latest
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

adl-digital-lib-query-parameter-store

Librería para extraer los parámetros de AWS parameters store para el proyecto de biometría facial

Prerrequisitos

  • Node v16.
  • Tener los permisos para AWS parameters store.

Instalacion

npm  install @avaldigitallabs/adl-digital-lib-query-parameter-store

Ejemplo

Obtension de un parametro

import {Ssm, SSMGetParameterRequest} from "@avaldigitallabs/adl-digital-lib-query-parameter-store";
constructor(private ssmLib: Ssm = new Ssm()) {}

    async getParameter(id: string): Promise<any> {
        const paramRequest: SSMGetParameterRequest = {
          Name: "/ptec-sellers-dev/param1",
          WithDecryption: true
        };

        return await this.ssmLib.getParameter(paramRequest);
    }

FAQs

Package last updated on 16 Jan 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts