(client?: DynamoDBDocumentClient)
| 22 | private constructor(readonly client: DynamoDBDocumentClient) { } |
| 23 | |
| 24 | static setDocumentClient(client?: DynamoDBDocumentClient) { |
| 25 | DOCUMENT_CLIENT = client ?? TinymoClient.createDefaultDocumentClient() |
| 26 | TINYMO_CLIENT = new TinymoClient(DOCUMENT_CLIENT); |
| 27 | } |
| 28 | |
| 29 | static default(): TinymoClient { |
| 30 | DOCUMENT_CLIENT = DOCUMENT_CLIENT ?? TinymoClient.createDefaultDocumentClient() |
nothing calls this directly
no test coverage detected