UNPKG

aws-lockbox

Version:

AWS SSM Parameter Store secrets manager with TypeScript support

11 lines (10 loc) 315 B
import { SSMClient, Parameter } from '@aws-sdk/client-ssm'; export declare class Store { private _store; private _maxRetries; constructor(maxRetries?: number); get store(): SSMClient; getParameters(parameterNames: string[]): Promise<Parameter[]>; private _getParameters; private _arg; }