Who created an Amazon EC2 instance using Boto and Python?
问题 I want to know who created a particular instance. I am using Cloud Trail to find out the statistics, but I am not able to get a particular statistics of who created that instance. I am using Python and Boto3 for finding out the details. I am using this code- Lookup events() from Cloud trail in boto3, to extract the information about an instance. ct_conn = sess.client(service_name='cloudtrail',region_name='us-east-1') events=ct_conn.lookup_events() 回答1: I found out the solution to the above