xiqi / aws-info-node

Get info about AWS Services and Regions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

aws-info

const { endpoint, regionName } = require('aws-info');

// https://s3.amazonzaws.com
const s3Endpoint = endpoint('S3', 'us-east-1');

// Canada (Central)
const name = regionName('ca-central-1');

You can also access the raw data:

const { data } = require('aws-info');

// data.regions ...
// data.services ...

About

Get info about AWS Services and Regions

License:MIT License


Languages

Language:JavaScript 100.0%