This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Dumps all IAM information to stdout | |
# Basically a version of GetAccountAuthorizationDetails that takes care of pagination | |
# for you. Don't use the aws CLI version or you'll have to deal with pagination yourself | |
import boto3 | |
import botocore | |
import json | |
from datetime import datetime |