Boto3列出Windows实例使用的所有角色

时间:2019-03-12 04:35:37

标签: amazon-web-services amazon-ec2 boto3

我想打印Windows实例使用的角色。我应该在此脚本中做哪些更改?

import boto3
client = boto3.client('iam',aws_access_key_id="",aws_secret_access_key="")
roles = client.list_roles()
Role_list = roles['Roles']
   for key in Role_list:
        print(key['RoleName'])
        print(key['Arn'])

0 个答案:

没有答案