1
在AWS docs看它說,你可以使用過濾器來獲取或值,如:AWS資源標籤或與博託
tag:key=value
The key/value combination of a tag assigned to the resource.
Example: To list the resources with the tag Purpose=X, use:
--filter tag:Purpose=X
Example: To list resources with the tag Purpose=X or the tag Purpose=Y, use:
--filter tag:Purpose=X --filter tag:Purpose=Y
但在博託你存儲在字典中的標籤(從獲得的所有快照) :
「filters(dict) - 可用於限制返回結果的可選過濾器過濾器以過濾器名稱作爲鍵和過濾器值作爲值組成的字典形式提供允許的過濾器名稱/值取決於正在執行的請求。有關詳細信息,請查閱EC2 API指南。「
如果你想做一個OR,那麼你的字典中需要兩個條目,其中'tag:Purpose'鍵顯然不起作用。有誰知道這是否有解決方法?或者博託不支持OR值過濾?