0

我在 AWS 上获得了 AWS CLI 工具和帐户。我运行命令 aws configure 并设置 AWS 访问密钥、AWS 密钥、区域和输出格式。现在当我运行命令时

aws ec2 describe-spot-price-history --instance-type m1.xlarge --product-description "Linux/Unix"

我得到空的输出

{
    "SpotPriceHistory": []
}

我已经尝试了多种实例类型,给出了开始时间和结束时间等。请有人帮我解决这个问题。

4

1 回答 1

1

您确定您的帐户支持启动ec2-classic 实例吗?

如果您在 2013 年 12 月 4 日之后创建了您的账户,它仅支持 EC2-VPC,并且要检索您需要指定您想要来自 VPC 的 ec2 实例的信息

aws ec2 describe-spot-price-history --product-description "Linux/UNIX (Amazon VPC)" --instance-type m1.xlarge
于 2016-07-19T12:14:48.677 回答