MCPcopy Index your code
hub / github.com/heygen-com/hyperframes / getS3Client

Function getS3Client

packages/aws-lambda/src/handler.ts:53–57  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

51 */
52let cachedS3Client: S3Client | null = null;
53function 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

Callers 3

handlePlanFunction · 0.85
handleRenderChunkFunction · 0.85
handleAssembleFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected