UNPKG

ssm-config-loader

Version:

Load configuration from SSM Parameter Store with local fallback

6 lines (5 loc) 223 B
import type { SSM } from '@aws-sdk/client-ssm'; export declare type SsmConfig = { [key: string]: string | SsmConfig; }; export declare const loadSsmConfig: (ssm: SSM, prefix?: string | undefined) => Promise<SsmConfig>;