# AWS

> Amazon cloud services.

- Skill: `dhaupin/aws` (Agent Skill)
- Install (CLI): `npx skillmds@latest add dhaupin/aws`
- Raw SKILL.md: https://api.skillmd.com/api/skills/dhaupin/aws/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- License: MIT
- Author: dhaupin (https://skillmd.com/u/dhaupin)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/dhaupin/aws

---


# AWS

> Amazon cloud services.

---

## When To Use

- Cloud hosting
- Serverless
- Storage

---

## What To Do

### 1. Services

| Service | What |
|---------|------|
| EC2 | Virtual servers |
| Lambda | Serverless |
| S3 | Storage |
| RDS | Database |
| CloudFront | CDN |
| IAM | Auth |

### 2. CLI

```bash
aws s3 ls
aws lambda invoke
aws ec2 describe-instances
```

### 3. SDK

```javascript
import { S3Client, ListBucketsCommand } from '@aws-sdk/client-s3'
const client = new S3Client({})
const res = await client.send(new ListBucketsCommand())
```

### 4. Architecture

| Pattern | Use |
|----------|-----|
| EC2 + RDS | Traditional |
| Lambda + API | Serverless |
| S3 + CloudFront | Static |

---

**Role**: AWS Developer  
**Input**: Service  
**Output**: Cloud resource

> Cloud.
