如何使用AWSCLI或BOTO3获取图像上次启动时间

发布于 2025-01-19 18:12:34 字数 153 浏览 1 评论 0原文

使用 ami 页面上的 AWS 控制台,我可以看到一个名为“上次启动时间”的属性,该属性显示上次使用此映像启动实例的时间(我假设)我尝试使用 describe-images ec2 API,但据我所知它没有显示。

有什么方法可以使用代码获取这些信息吗?

using the AWS console on the ami page I can see an attribute called Last launched time that shows the last time an instance was launched with this image (i assume) I try to get this attribute using the describe-images ec2 API but it doesn't show it as far as I can tell.

is there any way to get this information using code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

韶华倾负 2025-01-26 18:12:34

好吧,答案显然是

aws ec2 describe-image-attribute \
--image-id ami-1234567890example \
--attribute lastLaunchedTime

ok the answer is apparently

aws ec2 describe-image-attribute \
--image-id ami-1234567890example \
--attribute lastLaunchedTime
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文