I was trying to write the code where it will pass the list of accounts within AWS Organizations which are SUSPENDED
and will print the logic output for the ACTIVE
accounts. The code snippet is:
def get_accounts(role_arn) -> list:
'''Appends all the accounts listed in operations into ACCOUNTS'''
accounts = []
creds = get_aws_key_and_token(role_arn)
sess = session.Session(
aws_access_key_id=creds['AccessKeyId'],
aws_secret_access_key=creds['SecretAccessKey'],
aws_session_token=creds['SessionToken']
)
accounts = {}
org = sess.client('organizations')
paginator = org.get_paginator('list_accounts')
page_iterator = paginator.paginate()
for page in page_iterator:
for acct in page['Accounts']:
accounts[acct['Id']] = acct['Name']
return accounts
Can someone please help me to add that functionality?
Thanks
The
list_accounts()
documentation shows the output as:Therefore, you could use: