gpt4 book ai didi

amazon-web-services - AWS CLI - 如何查询在特定日期之后创建的快照

转载 作者:行者123 更新时间:2023-12-02 20:43:06 24 4
gpt4 key购买 nike

我正在尝试查询在特定日期之后创建的快照,但没有返回任何结果。我正在尝试的查询如下:

aws ec2 describe-snapshots --query 'Snapshots[?StartTime >= `2017-06-01`].{id:SnapshotId}' --owner-ids nnnnnnnnnnn

如果我删除 --query 部分,将返回所有快照,所以我知道这与查询有关。

我尝试检查 JMESPath docs但是关于日期操作的内容并不多。我还尝试复制示例中的语法 here无济于事。

谢谢,

最佳答案

您的代码示例非常适合我! (使用我的帐户 ID。)

在快照上查找日期,然后将该日期放入查询中——一天前,然后在一天后再次运行它。这应该可以帮助您追踪奇怪的行为。

$ aws ec2 describe-snapshots --query 'Snapshots[?StartTime >= `2016-08-30`].{id:SnapshotId}' --owner-ids 123456789012
[
{
"id": "snap-e044d613"
},
{
"id": "snap-f4444506"
}
]

$ aws ec2 describe-snapshots --query 'Snapshots[?StartTime >= `2016-08-31`].{id:SnapshotId}' --owner-ids 123456789012
[]

关于amazon-web-services - AWS CLI - 如何查询在特定日期之后创建的快照,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45451397/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com