13

在这个问题底部的示例 JSON 中,如何"Tags"使用 JMESPath 计算数组中键/值对的数量?

根据JMESPath 文档,我可以使用该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"
                        }
                    ]
                }
            ]
        }
    ]
}
4

2 回答 2

25

这里的答案是 JMESPath 文档令人震惊,并且由于某种原因我看到了过时的文档(检查屏幕的右下角以查看您正在查看的版本。

length()我可以使用该功能做我需要做的事情-

Reservations[].Instances[].Tags[] | length(@)
于 2016-08-26T08:54:48.650 回答
11

我设法将这种长度的用法合并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  |
+--------------+-----------------------+------------+--------------+
于 2018-06-12T23:36:35.987 回答