Skip to content

Instantly share code, notes, and snippets.

@gergo-dryrun
Last active March 2, 2021 12:54
Show Gist options
  • Save gergo-dryrun/d14dd61c855a428af5d6bd57de16c355 to your computer and use it in GitHub Desktop.
Save gergo-dryrun/d14dd61c855a428af5d6bd57de16c355 to your computer and use it in GitHub Desktop.
print out tuple of (AWS Service IAM namespace, AWS Service full name)
git clone https://github.com/boto/botocore.git
find botocore/botocore/data -name service-*.json | xargs cat | jq -r '(if (.metadata.signingName | length) > 0 then .metadata.signingName else .metadata.endpointPrefix end) + " " + .metadata.serviceFullName' | sort | uniq
@gergo-dryrun
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment