JohannesEbke / aws_list_all

List all your AWS resources, all regions, all services.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Not an issue, but a question

starty1314 opened this issue · comments

commented

Hi Johannes,

Sorry to bother you, but I am curious how you generated the list of service and regions. I found the the links below in google, but It's a bit of challenging to scrape the data from them.

Do you have any secret souce?

Hi @starty1314 , I'm using the meta-information from boto3, the official python SDK from AWS.
That one includes a machine-readable description, e.g. at:
boto3.client('s3').meta.service_model.operation_names, see at
https://github.com/JohannesEbke/aws_list_all/blob/master/aws_list_all/introspection.py#L286
Then it's just a ton of heuristics and blacklists.