Boto3でIAMユーザのリストを取得
awsとpythonを勉強しようと思ったところ、Boto3なるものを発見!
まずはIAMユーザのリスト処理を作成してみました。(コードがひどいとかは置いておく)
まだまだ勉強中なのでもっと書けるようになりたいなー
# -*- coding: utf-8 -*-
import boto3
from boto3.session import Session
client = boto3.client('iam')
# def
def user_list():
response = client.list_users()
for user in response["Users"]:
print(user["UserName"])
# main
if __name__ == "__main__":
user_list()
from : https://github.com/handa3/study/blob/master/aws/iam/user_list.py
Author And Source
この問題について(Boto3でIAMユーザのリストを取得), 我々は、より多くの情報をここで見つけました https://qiita.com/handa3/items/8f44cbd8da03e4331a2b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .