aws-products
v1.3.0
Published
List of Amazon Web Services (AWS) products
Downloads
14
Maintainers
Readme
aws-products
List of Amazon Web Services (AWS) products
It's just two JSON files that can be used in any environment.
Install
npm install aws-products
Usage
const awsProducts = require('aws-products')
console.log(awsProducts)
/*
[
'API Gateway',
'AppStream',
'AppStream 2.0',
'Athena',
'Auto Scaling',
...
]
*/
And products with regions:
const awsProducts = require('aws-products/detailed')
console.log(awsProducts)
/*
[
{
name: 'API Gateway',
regions: [
{ "name": "Montreal", "code": "apigateway-ca-central-1" },
{ "name": "N. California", "code": "apigateway-us-west-1" },
...
]
},
{
name: 'AppStream',
regions: [
{ "name": "N. Virginia", "code": "appstream-us-east-1" }
]
},
...
{
"name": "Route 53",
"regions": null,
"code": "route53"
},
...
]
*/
Update json files
node ./bin/fetch-products.js
node ./bin/fetch-products-detailed.js
Related
- azure-products - List of Microsoft Azure products
License
MIT. Copyright (C) Halil İbrahim Şener.