0

这似乎是一个超级基本的问题,因为我很长时间以来一直在使用 boto 库从 python 访问 amazon aws api,并且由于某种原因,我找不到获取保留实例开始日期的调用。

您可以从直接 api 调用中获取开始日期,如“输出”部分下所述。

http://docs.aws.amazon.com/AWSEC2/latest/CommandLineReference/ApiReference-cmd-DescribeReservedInstances.html

但是,从 boto 库中没有返回任何信息,可以为您提供预订开始日期

http://boto.readthedocs.org/en/latest/ref/ec2.html#boto.ec2.reservedinstance.ReservedInstance

任何帮助将不胜感激,因为在过去的几个小时里我一直在努力寻找这个。

4

1 回答 1

1

boto 返回的ReservedInstance对象应该有一个属性,该属性包含与EC2 CLI 工具start返回的值相同的值。start_date

于 2013-06-20T23:59:16.083 回答