在这个问题底部的示例JSON中,如何使用JMESPath计算数组"Tags"
中的键/值对的数量?
根据JMESPath documentation,我可以使用count()
函数 -
例如,下面的表达式创建一个数组,其中包含foo对象中元素的总数,后跟foo [" bar"]的值。
但是,文档似乎不正确。使用JMESPath网站,查询Reservations[].Instances[].[count(@), Tags]
生成结果[ [ null ] ]
。然后,我通过AWS命令行进行了测试,并返回了错误 -
未知功能:count()
实际上是否有办法使用JMESPath执行此操作?
示例JSON -
{
"Reservations": [
{
"Instances": [
{
"InstanceId": "i-asdf1234",
"InstanceName": "My Instance",
"Tags": [
{
"Value": "Value1",
"Key": "Key1"
},
{
"Value": "Value2",
"Key": "Key2"
},
{
"Value": "Value3",
"Key": "Key3"
},
{
"Value": "Value4",
"Key": "Key4"
}
]
}
]
}
]
}
答案 0 :(得分:11)
这里的答案是JMESPath文档令人震惊,并且出于某种原因我看到了过时的文档(请查看屏幕右下角以查看您正在查看的版本。
我可以使用length()
函数 -
Reservations[].Instances[].Tags[] | length(@)
答案 1 :(得分:2)
我设法将这个长度为length(Tags[*])
的用法纳入我认为有用且想要分享的更大的陈述中:
aws ec2 describe-instances --region us-west-2 --query 'Reservations[*].Instances[*].{id: InstanceId, ami_id: ImageId, type: InstanceType, tag_count: length(Tags[*])}' --profile prod --output table;
--------------------------------------------------------------------
| DescribeInstances |
+--------------+-----------------------+------------+--------------+
| ami_id | id | tag_count | type |
+--------------+-----------------------+------------+--------------+
| ami-abc123 | i-redacted1 | 1 | m3.medium |
| ami-abc456 | i-redacted2 | 7 | m3.xlarge |
| ami-abc789 | i-redacted3 | 12 | t2.2xlarge |
+--------------+-----------------------+------------+--------------+