我正在寻找一种方法来列出按CreatedTime排序的启动配置。当我在下面运行此命令时,它不会返回最旧的 LC:
aws 自动缩放 describe-launch-configurations --max-items 1
有办法吗?谢谢!
我正在寻找一种方法来列出按CreatedTime排序的启动配置。当我在下面运行此命令时,它不会返回最旧的 LC:
aws 自动缩放 describe-launch-configurations --max-items 1
有办法吗?谢谢!
您可以使用这样的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]'