npm install typescript-aws-cloudwatch-helper@latest
const logger = new Logger(LogLevel.Trace);
const helper = new CloudWatchHelper(logger);
const response = await helper.PutMetricDataAsync(
'namespace',
[] as AWS.CloudWatch.MetricDatum[],
);
import * as CloudWatch from '@aws-sdk/client-cloudwatch';
const logger = new Logger(LogLevel.Trace);
const options: CloudWatch.CloudWatchClientConfig = {
accessKeyId: '{access_key}',
secretAccessKey: '{secret_key}',
region: 'us-east-1',
};
const repository = new CloudWatch.CloudWatch(options);
const helper = new CloudWatchHelper(logger, repository);
const response = await helper.PutMetricDataAsync(
'namespace',
[] as CloudWatch.MetricDatum[],
);
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