关于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等)。这是完整的文档。