auto-generated-aws-client-singleton-pattern
Installation
SKILL.md
AWS Client Singleton Pattern
AWS SDK clients initialized lazily as singletons. Shared across Lambda invocations. Conditional credentials for frontend vs backend.
Lazy Singleton Pattern
Module-level null variable, getter function creates on first call:
// From frontend/lib/aws/clients.ts
let dynamoClient: DynamoDBClient | null = null;