We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58ef101 commit 5ea9f5dCopy full SHA for 5ea9f5d
backend/src/dynamodb.service.ts
@@ -1,5 +1,5 @@
1
import { Injectable, Logger } from "@nestjs/common";
2
-import { DynamoDBClient } from "@aws-sdk/client-dynamodb";
+import { DynamoDBClient, DynamoDBClientConfig } from "@aws-sdk/client-dynamodb";
3
import {
4
DynamoDBDocumentClient,
5
GetCommand,
@@ -12,7 +12,6 @@ import {
12
13
@Injectable()
14
export class DynamoDBService {
15
- private readonly logger = new Logger(DynamoDBService.name);
16
private dynamoClient: DynamoDBDocumentClient;
17
private tableName: string;
18
constructor() {
0 commit comments