I need to retrieve CreateImage and CreateSnapshot events from AWS Cloud Trail using Find-CTEvent
cmdlet.
So I try the following:
Find-CTEvent -LookupAttribute @(@{ AttributeKey="EventName"; AttributeValue="CreateSnapshot"},@{ AttributeKey="EventName"; AttributeValue="CreateImage"})
And I get events only for the first element in the list. So, where am I wrong? I'd appreciate any help. Thank you.