0

特定のインスタンスの作成者を知りたい。Cloud Trail を使用して統計を調べていますが、そのインスタンスの作成者に関する特定の統計を取得できません。詳細を調べるためにPythonとBoto3を使用しています。インスタンスに関する情報を抽出するために、boto3 の Cloud Trail からこのコード Lookup events() を使用しています。

ct_conn = sess.client(service_name='cloudtrail',region_name='us-east-1')


events=ct_conn.lookup_events()
4

2 に答える 2

1

I found out the solution to the above problem using lookup_events() function.

ct_conn = boto3.client(service_name='cloudtrail',region_name='us-east-1')

events_dict= ct_conn.lookup_events(LookupAttributes=[{'AttributeKey':'ResourceName', 'AttributeValue':'i-xxxxxx'}])
for data in events_dict['Events']:
    json_file= json.loads(data['CloudTrailEvent'])
    print json_file['userIdentity']['userName']
于 2015-06-03T10:49:01.673 に答える