S3 sync with delete + excludes aws
Mirror dir to bucket; --delete removes stale keys. note: --size-only skips mtime checks
aws s3 sync ./ s3://<name>/ --delete --exclude '*.tmp' --exclude '.git/*' --size-only
more aws
all 14 commands →
Presigned S3 download URL
aws s3 presign s3://<name>/path/file.tgz --expires-in 3600
Update kubeconfig for EKS
aws eks update-kubeconfig --name <cluster> --region <id> --alias <cluster> --kubeconfig ~/.kube/config
ECR docker login
aws ecr get-login-password --region <id> | docker login --username AWS --password-stdin <id>.dkr.ecr.<id>.amazonaws.com
SSM shell without SSH
aws ssm start-session --target i-<id> --region <id>
Tail Lambda/CloudWatch logs
aws logs tail /aws/lambda/<name> --follow --since 10m --format short