yawn / geographer

AWS service-by-region metadata

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

geographer

Minimal API to determine the effective regions in which a given AWS service is available. The effective regions are determined by general service availability and the regions that are enabled for a given account.

Example

Determine the effectively available regions for EC2:

regions, err := geographer.GetRegions(context.TODO())

if err != nil {
  panic(err)
}

ec2 := geographer.Services["ec2"].Intersection(regions...)

About

AWS service-by-region metadata


Languages

Language:Go 100.0%