Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sethsec-bf authored Dec 12, 2022
1 parent bd78daf commit 52ad63b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# aws-servicemap
Not all AWS services are supported in all regions. Use this go module to determine if a service is supported in a specific region and more.

Uses https://api.regional-table.region-services.aws.a2z.com/index.json as the source of truth
Uses https://api.regional-table.region-services.aws.a2z.com/index.json as the source of truth.

## Functions

Expand All @@ -27,8 +27,12 @@ import (
func main() {
// JsonFileSource options: "EMBEDDED_IN_PACKAGE", "DOWNLOAD_FROM_AWS"
// When using "EMBEDDED_IN_PACKAGE" this package does not make any external HTTP requests, but the data might be slightly out of date
// When using "DOWNLOAD_FROM_AWS" this package makes an external HTTP request, but you get real-time data.
// When using "EMBEDDED_IN_PACKAGE" this package does not make any external HTTP
// requests, but the data might be slightly out of date
// When using "DOWNLOAD_FROM_AWS" this package makes an external
// HTTP request, but you get real-time data.
servicemap := &awsservicemap.AwsServiceMap{
JsonFileSource: "EMBEDDED_IN_PACKAGE",
Expand Down

0 comments on commit 52ad63b

Please sign in to comment.