Problem:
I'm trying to get the region of the authenticated user from boto3.
Use case:
I'm working on adding cache to https://github.com/pmazurek/aws-fuzzy-finder. I would prefer to cache the result on per-region basis.
This package uses boto to get user authentication data (keys and the region). The problem is the region is never passed explicitly by the user, its being taken from one of the many murky places that boto reads so I don't really have a way of getting it.
I have tried searching through boto3 api and googling, but couldn't find anything like a get_region or get_user_data method. Is it possible?