我在 AWS 中有具有相同 ReservationId 的实例(它们同时启动并且它们的 AmiLaunchIndex 为 0 到 x )。我的目标是生成每个实例一行的文本输出,例如这个。为了清楚起见,我添加了列标题。
OwnerId ReservationId InstanceId PrivateIpAddress AmiLaunchIndex
12345678910 r-poiu4567 i-asdf1234 10.0.0.1 0
12345678910 r-poiu4567 i-qwer4312 10.0.1.1 1
... etc ...
在 jmespath gitter 频道中,建议使用 map 函数来完成此操作,但我不知道如何使用该函数。有什么建议么?