aws-patterns
Installation
SKILL.md
AWS Patterns
Best practices for AWS cloud infrastructure design and implementation.
Core Services Patterns
Lambda Functions
# Best practice Lambda handler structure
import json
import logging
from typing import Any
logger = logging.getLogger()
logger.setLevel(logging.INFO)