nestjs-aws-sqs
v1.2.4
Published
conexion a amazon aws, sqs microservice strategy, SQS CONSUMER
Downloads
173
Maintainers
Readme
install
yarn add @nestjs/microservices
import
main.ts
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
import {MicroserviceOptions} from "@nestjs/microservices";
import {AwsCloudSqsServer} from "nestjs-aws-sqs";
async function bootstrap() {
const app = await NestFactory.createMicroservice<MicroserviceOptions>(
AppModule,
{
strategy: new AwsCloudSqsServer({
params:{
MaxNumberOfMessages: 1,
MessageAttributeNames: ["All"],
QueueUrl: "QueueUrl",
VisibilityTimeout: 30,
WaitTimeSeconds: 0,
},
conexion:{
channel: 'notificaions',
refresh: 500, // ms
region: 'region'
}
}),
},
);
app.listen(() => console.log('Microservice is listening'));
}
bootstrap();