Software Engineering :: Cloud :: Hosting :: Provider :: AWS :: CLI :: JMESPath
⪼ Made with 💜 by Polyglot.
locations[?state == 'WA'].name | sort(@) | {WashingtonCities: join(', ', @)}
{
"locations": [
{"name": "Seattle", "state": "WA"},
{"name": "New York", "state": "NY"},
{"name": "Bellevue", "state": "WA"},
{"name": "Olympia", "state": "WA"}
]
}
{
"WashingtonCities": "Bellevue, Olympia, Seattle"
}