npm install typescript-aws-sqs-helper@latest
const logger = new Logger(LogLevel.Trace);
const helper = new SQSHelper(logger);
const response = await helper.DeleteMessageAsync('queueUrl', 'receiptHandle');
import * as SQS from '@aws-sdk/client-sqs';
const logger = new Logger(LogLevel.Trace);
const options: SQS.SQSClientConfig = {
accessKeyId: '{access_key}',
secretAccessKey: '{secret_key}',
region: 'us-east-1',
};
const repository = new SQS.SQS(options);
const helper = new SQSHelper(logger, repository);
const response = await helper.DeleteMessageAsync('queueUrl', 'receiptHandle');
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