0

我正在寻找一种方法来列出按CreatedTime排序的启动配置。当我在下面运行此命令时,它不会返回最旧的 LC:

aws 自动缩放 describe-launch-configurations --max-items 1

有办法吗?谢谢!

4

1 回答 1

0

您可以使用这样的JMESPath表达式来控制命令的输出:

aws autoscaling describe-launch-configurations --query 'reverse(sort_by(LaunchConfigurations, &CreatedTime))'

前面的命令将列出所有按降序排列的启动配置CreatedTime。如果您只想获取基于 的最新启动配置,请在命令末尾CreatedTime添加表达式:[0]

aws autoscaling describe-launch-configurations --query 'reverse(sort_by(LaunchConfigurations, &CreatedTime))[0]'
于 2018-01-25T04:26:52.223 回答