()
| 51 | */ |
| 52 | let cachedS3Client: S3Client | null = null; |
| 53 | function getS3Client(): S3Client { |
| 54 | if (cachedS3Client) return cachedS3Client; |
| 55 | cachedS3Client = new S3Client({}); |
| 56 | return cachedS3Client; |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * Optional injection points used by the handler's unit tests. Production |
no outgoing calls
no test coverage detected