我正在寻找AWS CLI的教程---查询

时间:2018-07-02 11:16:43

标签: json amazon-web-services aws-cli

我正在寻找aws cli --query教程,有人可以推荐优质页面吗?

我尝试了一些示例,但是我仍然停留在如何从JSON对象提取数据以及从何处开始的问题上。

谢谢!

1 个答案:

答案 0 :(得分:1)

AWS Command-Line Interface (CLI)使用JMESPath syntax

我经常使用JMESPath Tutorial。它是交互式的,甚至包括一些AWS示例,例如解析:

{
  "reservations": [
    {
      "instances": [
        {"state": "running"},
        {"state": "stopped"}
      ]
    },
    {
      "instances": [
        {"state": "terminated"},
        {"state": "runnning"}
      ]
    }
  ]
}