moai-cloud-aws-advanced
Installation
SKILL.md
Advanced AWS Architecture
Production-grade AWS patterns for containers (ECS/EKS) and serverless (Lambda/EventBridge).
Quick Start
Deploy Lambda Function:
# Create function
aws lambda create-function \
--function-name my-function \
--runtime python3.11 \
--handler lambda_function.lambda_handler \
--role arn:aws:iam::ACCOUNT:role/lambda-role \
--zip-file fileb://function.zip