Although it has improved lately for some services, AWS is still notoriously unfriendly when it comes to checking which services are activated and running across different regions. Here’s a script you can run in the console to quickly see which regions have SES (Simple Email Service) available:
```bash
for region in $(aws ec2 describe-regions --query "Regions[].RegionName" --output text); do
echo -n "$region: "
aws ses get-account --region "$region" >/dev/null 2>&1 \
&& echo "supported" \
|| echo "not supported"
done
```
It walks every enabled region, hits `ses get-account`, and prints support status. Handy when you’re standing up a new SES sender and need to know which region to bind your domain to.