How to list available regions with Boto3 (Python)

﹥>﹥吖頭↗ 提交于 2020-08-22 03:29:52

问题


As AWS expands and adds new regions, I'd like to have my code automatically detect that. Currently, the "Select your region" is hard coded but I would like to parse the following for just the RegionName.

import boto3

ec2 = boto3.client('ec2')
regions = ec2.describe_regions()
print(regions)

My output is JSON like so:

{'Regions': [{'Endpoint': 'ec2.ap-south-1.amazonaws.com', 'RegionName': 'ap-south-1'}, {'Endpoint': 'ec2.eu-west-1.amazonaws.com', 'RegionName': 'eu-west-1'}, {'Endpoint': 'ec2.ap-southeast-1.amazonaws.com', 'RegionName': 'ap-southeast-1'}]}

I've trimmed off the repeating data and the ResponseMetadata for the sake of space.

How can I parse the RegionName into a list?


回答1:


The following will return you the RegionName and Endpoint for each region.

# List all regions
client = boto3.client('ec2')
regions = [region['RegionName'] for region in client.describe_regions()['Regions']]



回答2:


In addition to Frédéric's answer, you can also get known regions for each service without making any service calls. I will caution you, however, that since this is pulling from botocore's local models rather than hitting an endpoint, it will not always be exhaustive since you need to update botocore to update the list.

from boto3.session import Session

s = Session()
dynamodb_regions = s.get_available_regions('dynamodb')

Additionally, you are not restricted to the regions in this list. If you are using an older version of botocore you can still use new regions by specifying them. They just won't appear in this list.



来源:https://stackoverflow.com/questions/38451032/how-to-list-available-regions-with-boto3-python

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!