{"id":30251289,"url":"https://github.com/myerscode/aws-meta","last_synced_at":"2026-03-15T08:57:26.578Z","repository":{"id":305407809,"uuid":"991573626","full_name":"myerscode/aws-meta","owner":"myerscode","description":"Golang package to consume meta data about AWS Regions, Partions and Services","archived":false,"fork":false,"pushed_at":"2026-02-10T03:16:26.000Z","size":12839,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-10T08:40:40.784Z","etag":null,"topics":["aws","aws-meta","aws-partition","aws-region"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/myerscode.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-05-27T20:43:08.000Z","updated_at":"2026-02-10T03:16:29.000Z","dependencies_parsed_at":"2025-08-28T03:14:39.635Z","dependency_job_id":"4ac97187-aacc-47c2-90ee-1c71678921f8","html_url":"https://github.com/myerscode/aws-meta","commit_stats":null,"previous_names":["myerscode/aws-meta"],"tags_count":85,"template":false,"template_full_name":null,"purl":"pkg:github/myerscode/aws-meta","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/myerscode%2Faws-meta","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/myerscode%2Faws-meta/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/myerscode%2Faws-meta/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/myerscode%2Faws-meta/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/myerscode","download_url":"https://codeload.github.com/myerscode/aws-meta/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/myerscode%2Faws-meta/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29471164,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T05:26:30.465Z","status":"ssl_error","status_checked_at":"2026-02-15T05:26:21.858Z","response_time":118,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws","aws-meta","aws-partition","aws-region"],"created_at":"2025-08-15T10:39:07.751Z","updated_at":"2026-02-15T06:03:39.450Z","avatar_url":"https://github.com/myerscode.png","language":"Go","readme":"# AWS Metadata\n\u003e A Go package for exposing information about AWS Partitions, Regions and Services\n\n[![Go](https://github.com/myerscode/aws-meta/actions/workflows/go.yml/badge.svg)](https://github.com/myerscode/aws-meta/actions/workflows/go.yml)\n[![Nightly Update](https://github.com/myerscode/aws-meta/actions/workflows/nightly-update.yml/badge.svg)](https://github.com/myerscode/aws-meta/actions/workflows/nightly-update.yml)\n[![Weekly Release](https://github.com/myerscode/aws-meta/actions/workflows/weekly-release.yml/badge.svg)](https://github.com/myerscode/aws-meta/actions/workflows/weekly-release.yml)\n[![Go Reference](https://pkg.go.dev/badge/github.com/myerscode/aws-meta.svg)](https://pkg.go.dev/github.com/myerscode/aws-meta)\n[![Go Report Card](https://goreportcard.com/badge/github.com/myerscode/aws-meta)](https://goreportcard.com/report/github.com/myerscode/aws-meta)\n\nKnowing what AWS services are available in which regions and partitions can be a bit of a pain; \nthis package aims to keep an up to date reference for the available endpoints for all AWS services.\n\n## Features\n\n- **Partitions**: Get all AWS partition names (aws, aws-cn, aws-us-gov)\n- **Regions**: List all AWS regions across all partitions\n- **Services**: Access AWS service information and operations\n- **Regional Services**: Find which services are available in specific regions\n- **Service Operations**: Get all available operations for any AWS service\n\n## Installation\n\n```bash\ngo get github.com/myerscode/aws-meta\n```\n\n## Quick Start\n\n### Working with Partitions\n```go\nimport \"github.com/myerscode/aws-meta/pkg/partitions\"\n\n// Get all partition names\npartitions := partitions.AllPartitionNames()\nfmt.Printf(\"Available partitions: %v\\n\", partitions)\n\n// Get detailed partition information\npartitionList, err := partitions.List()\nif err != nil {\n    log.Fatal(err)\n}\n\n// Get partitions by type\ncommercial, _ := partitions.CommercialPartitions()\nsovereign, _ := partitions.SovereignPartitions()\nisolated, _ := partitions.IsolatedPartitions()\n```\n\n### Working with Services and Regions\n```go\nimport \"github.com/myerscode/aws-meta/pkg/services\"\n\n// Get all regions\nregions := services.AllRegionNames()\n\n// Get detailed service metadata\nservices, err := services.ServiceMeta()\nif err != nil {\n    log.Fatal(err)\n}\n\n// Get services available in a specific region\nregionServices, err := services.ServiceMetaForRegion(\"us-east-1\")\nif err != nil {\n    log.Fatal(err)\n}\n\n// Get service operations\noperations, err := services.ServiceOperations(\"S3\")\nif err != nil {\n    log.Fatal(err)\n}\n```\n\n## Documentation\n\n- [API Reference](docs/methods.md) - Overview of all packages and functions\n- [Partitions Package](docs/partitions.md) - Partition-related functions\n- [Services Package](docs/services.md) - Service and region functions\n- [Examples](docs/examples.md) - Usage examples and complete code samples\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmyerscode%2Faws-meta","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmyerscode%2Faws-meta","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmyerscode%2Faws-meta/lists"}