4

是否可以使用多个查找属性查询 cloudtrail

当我执行以下

aws cloudtrail lookup-events --lookup-attributes AttributeKey=EventName,AttributeValue=CreateTopic 

它给了我“CreateTopic”类型的事件列表

当我执行以下

aws cloudtrail lookup-events --lookup-attributes AttributeKey=AttributeKey=Username,AttributeValue=MyUserName 

它给了我与用户“MyUserName”相关的事件列表

但是我想要的是查询所有类型为“CreateTopic”并与用户“MyUserName”相关的事件

我尝试关注,但没有一个有效

aws cloudtrail lookup-events --lookup-attributes AttributeKey=EventName,AttributeValue=CreateTopic,AttributeKey=Username,AttributeValue=MyUserName 
aws cloudtrail lookup-events --lookup-attributes AttributeKey=EventName,AttributeValue=CreateTopic AttributeKey=Username,AttributeValue=MyUserName 
aws cloudtrail lookup-events --lookup-attributes AttributeKey=EventName,AttributeValue=CreateTopic --lookup-attributes AttributeKey=Username,AttributeValue=MyUserName 
4

1 回答 1

4

从文档中,--lookup-attributes仅支持一项列表。

--lookup-attributes (list)

    Contains a list of lookup attributes. Currently the list can contain only one item.

https://docs.aws.amazon.com/cli/latest/reference/cloudtrail/lookup-events.html

于 2018-08-14T12:57:04.927 回答