我想打印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'])