У меня есть conversations.module.ts
, в котором есть:
@Module({
imports: [ImageModule, YoutubeModule],
controllers: [ConversationsController],
providers: [ConversationsService, ParticipantsService, StreamsService]
})
export class ConversationsModule { }
, а в моем conversations.controller.ts
у меня:
@Controller('conversations')
export class ConversationsController {
constructor(private conversationsService: ConversationsService, private imageService: ImageService, private youtubeService: YoutubeService, private participantsService: ParticipantsService, private streamsService: StreamsService) { }
Но я хочу ввести AWS Модуль S3:
const secretsmanager = new S3({ region: 'us-east-1' })
, который требует его создания. Как я могу выполнить sh это?