使用 aws cli

關於 aws cli 的最好的部分是你可以將命令嵌入到指令碼中並根據某些標準觸發它們。與生產中的自動部署(在 Elastic Beanstalk 中)一樣,無需轉到 AWS 控制檯進行選擇和部署。
你將通過執行獲得所有可用命令:

# This will give all the available commands
aws help

你甚至可以走得更遠,比如:

# This will give all the available options for ec2
aws ec2 help

並進一步

# This will output all the operations you can do with ec2 instances
aws ec2 describe-instances help 

你可以使用 aws cli 列出/操作所有 aws 資源(S3,EC2,EBS,RDS 等)。這是完整的文件