skills/smithery.ai/auto-generated-aws-client-singleton-pattern

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;
Installs
1
First Seen
Mar 25, 2026
auto-generated-aws-client-singleton-pattern from smithery.ai