npm install typescript-aws-ssm-helper@latest
const logger = new Logger(LogLevel.Trace);
const helper = new SSMHelper(logger);
const response = await helper.GetParametersByPathAsync('path');
import * as SSM from '@aws-sdk/client-ssm';
const logger = new Logger(LogLevel.Trace);
const options: SSM.SSMClientConfig = {
accessKeyId: '{access_key}',
secretAccessKey: '{secret_key}',
region: 'us-east-1',
};
const repository = new SSM.SSM(options);
const helper = new SSMHelper(logger, repository);
const response = await helper.GetParametersByPathAsync('path');
If no options are supplied, will default to us-east-1
as the region
Clone the latest and run
npm run prep
to install packages and prep the git hooks