Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. >>> import boto3
  2. >>> account_id = boto3.resource('iam').CurrentUser().arn.split(':')[4]
  3.  
  4. >>> timeit.timeit("boto3.resource('iam').CurrentUser().arn",
  5. ... 'import boto3', number=10)
  6. 4.8895583080002325
  7.  
  8. >>> import boto3
  9. >>> boto3.client('sts').get_caller_identity().get('Account')
  10. '012345678901'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement